From 579a26f5593039ffbbd1a81e45ecf0ef8797cb5d Mon Sep 17 00:00:00 2001 From: nass1pro Date: Tue, 9 Jun 2020 19:48:34 +0200 Subject: add lexer add single quote --- test_mini/libft/test/include/libft_test.h | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 test_mini/libft/test/include/libft_test.h (limited to 'test_mini/libft/test/include/libft_test.h') diff --git a/test_mini/libft/test/include/libft_test.h b/test_mini/libft/test/include/libft_test.h new file mode 100644 index 0000000..efa15cd --- /dev/null +++ b/test_mini/libft/test/include/libft_test.h @@ -0,0 +1,27 @@ +#ifndef LIBFT_TEST_H +# define LIBFT_TEST_H + +# include +# include +# include +# ifdef __APPLE__ +# include +# endif + +# include "unity.h" +# include "unity_fixture.h" + +# undef free +# undef malloc + +# include + +# 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 -- cgit