-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfract_ol_core.c
25 lines (22 loc) · 1.1 KB
/
fract_ol_core.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
25
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* fract_ol_core.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mbrement <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/02/03 19:05:49 by mbrement #+# #+# */
/* Updated: 2023/02/05 12:41:22 by mbrement ### ########lyon.fr */
/* */
/* ************************************************************************** */
#include "Tools/Libft/libft.h"
#include "fract_ol.h"
int main(int arg_c, char **arg_v)
{
int value;
int fractal_nb;
fractal_nb = parser(arg_c, arg_v);
value = ft_atoi(arg_v[2]);
algo_init(value, fractal_nb);
return (0);
}