blob: efa15cdaa479dcc1283d6df20b0837651db81f86 (
plain)
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
|
#ifndef LIBFT_TEST_H
# define LIBFT_TEST_H
# include <string.h>
# include <ctype.h>
# include <sys/wait.h>
# ifdef __APPLE__
# include <malloc/malloc.h>
# endif
# include "unity.h"
# include "unity_fixture.h"
# undef free
# undef malloc
# include <stdlib.h>
# include "libft.h"
# include "libft_algo.h"
# include "libft_lst.h"
# include "libft_ht.h"
# include "libft_vec.h"
# include "helper/helper_segfault.h"
#endif
|