-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
19 lines (17 loc) · 979 Bytes
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ccharrie <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/12/01 16:24:03 by ccharrie #+# #+# */
/* Updated: 2018/01/04 11:00:16 by ccharrie ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_ls.h"
int main(int ac, char **av)
{
ft_parsing(ac, av);
return (0);
}