-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.c
More file actions
31 lines (26 loc) · 1.17 KB
/
main.c
File metadata and controls
31 lines (26 loc) · 1.17 KB
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
26
27
28
29
30
31
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: alee <alee@student.42seoul.kr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/07/20 19:57:00 by alee #+# #+# */
/* Updated: 2022/07/21 13:49:14 by alee ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft/libft.h"
#include "utils/ft_utils_01.h"
#include "cub3d.h"
//debug
#include <stdlib.h>
#include <stdio.h>
#include "parse/parse_data.h"
int main(int argc, char *argv[])
{
t_cub3d data;
ft_bzero(&data, sizeof(data));
init_data(argc, argv, &data);
system("leaks cub3D");
return (0);
}