-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtesr.c
21 lines (18 loc) · 1014 Bytes
/
tesr.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* tesr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mmostafa <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/01/12 22:00:44 by mmostafa #+# #+# */
/* Updated: 2020/01/12 22:05:40 by mmostafa ### ########.fr */
/* */
/* ************************************************************************** */
#include <unistd.h>
#include <sys/fcntl.h>
int main(int ac, char **av)
{
int fd = open(av[1], O_TRUNC);
return (0);
}