From 7a34b3d412f5022d4ce25d84ec7fb4002b1fb5db Mon Sep 17 00:00:00 2001 From: Thomas Vanbesien Date: Sat, 21 Feb 2026 17:33:28 +0100 Subject: Implement libft Part 3 (linked lists) with tests Add t_list struct and 9 linked list functions: ft_lstnew, ft_lstadd_front, ft_lstsize, ft_lstlast, ft_lstadd_back, ft_lstdelone, ft_lstclear, ft_lstiter, ft_lstmap. --- tests/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tests/Makefile') diff --git a/tests/Makefile b/tests/Makefile index 3fc0322..00f69b3 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -8,7 +8,8 @@ LIB = ../lib/libft.a TESTS = test_strlen test_is test_mem test_cmp test_case test_strl test_search \ test_atoi test_alloc test_substr test_strjoin test_strtrim \ - test_split test_itoa test_strmapi test_striteri test_put + test_split test_itoa test_strmapi test_striteri test_put \ + test_lst BINS = $(TESTS:%=$(BINDIR)/%) -- cgit v1.2.3