-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.c
37 lines (33 loc) · 1.25 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cacharle <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/08 03:06:45 by cacharle #+# #+# */
/* Updated: 2020/11/07 17:13:43 by charles ### ########.fr */
/* */
/* ************************************************************************** */
#include "libasm_test.h"
int pid;
bool signaled;
bool signaled_suite;
char *test_name;
int main(void)
{
ft_strlen_test();
ft_strcpy_test();
ft_strcmp_test();
ft_write_test();
ft_read_test();
ft_strdup_test();
#ifdef LIBASM_TEST_BONUS
ft_atoi_base_test();
ft_list_push_front_test();
ft_list_size_test();
ft_list_sort_test();
ft_list_remove_if_test();
#endif
return 0;
}