-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
24 lines (21 loc) · 1020 Bytes
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aaubin <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2013/12/18 22:21:01 by aaubin #+# #+# */
/* Updated: 2013/12/18 22:21:06 by aaubin ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_fdf.h"
int main(int ac, char **av)
{
t_context ct;
if (ac > 1)
{
ft_fdf_init(&ct, av[1]);
}
return (0);
}