-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.c
32 lines (28 loc) · 1.14 KB
/
test.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
26
27
28
29
30
31
32
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* test.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: Kashnitskiy <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/09/04 12:03:18 by mtrisha #+# #+# */
/* Updated: 2020/01/21 20:56:52 by Kashnitskiy ### ########.fr */
/* */
/* ************************************************************************** */
#include <libft.h>
void test(void)
{
return ;
}
/*
** Look here if you don’t understand the meaning of such main()
** https://github.com/elijahkash/libft/wiki/First-steps
*/
int main(void)
{
ft_memman_init();
test();
ft_force_buff();
ft_memman_clean();
return (0);
}