From 8131a5d26441c5152ab151b4bb49b561e5ca6e81 Mon Sep 17 00:00:00 2001 From: Charles Date: Fri, 31 Jan 2020 10:44:30 +0100 Subject: hash table unit testing, norming --- test/include/libft_test.h | 1 - 1 file changed, 1 deletion(-) (limited to 'test/include/libft_test.h') diff --git a/test/include/libft_test.h b/test/include/libft_test.h index 23c39c3..1d944a5 100644 --- a/test/include/libft_test.h +++ b/test/include/libft_test.h @@ -22,5 +22,4 @@ # include "helper/helper_segfault.h" - #endif -- cgit From a1675f56b35f5521a91851bae8ca650706374ae6 Mon Sep 17 00:00:00 2001 From: Charles Date: Wed, 1 Apr 2020 21:21:10 +0200 Subject: Added vector --- test/include/libft_test.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'test/include/libft_test.h') diff --git a/test/include/libft_test.h b/test/include/libft_test.h index 1d944a5..efa15cd 100644 --- a/test/include/libft_test.h +++ b/test/include/libft_test.h @@ -18,7 +18,9 @@ # include "libft.h" # include "libft_algo.h" +# include "libft_lst.h" # include "libft_ht.h" +# include "libft_vec.h" # include "helper/helper_segfault.h" -- cgit From 42316d8393d32bd88fb8e0cba6825185f78dacd0 Mon Sep 17 00:00:00 2001 From: Charles Date: Sat, 4 Apr 2020 21:28:21 +0200 Subject: Added test and doc for dynamic string --- test/include/libft_test.h | 1 + 1 file changed, 1 insertion(+) (limited to 'test/include/libft_test.h') diff --git a/test/include/libft_test.h b/test/include/libft_test.h index efa15cd..c58d533 100644 --- a/test/include/libft_test.h +++ b/test/include/libft_test.h @@ -21,6 +21,7 @@ # include "libft_lst.h" # include "libft_ht.h" # include "libft_vec.h" +# include "libft_dstr.h" # include "helper/helper_segfault.h" -- cgit