From a8f7e6e83bc4846c94c0489e0f6e0f807b35073e Mon Sep 17 00:00:00 2001 From: Thomas Vanbesien Date: Sat, 21 Feb 2026 16:29:51 +0100 Subject: Implement libft Part 2 with tests Add ft_substr, ft_strjoin, ft_strtrim, ft_split, ft_itoa, ft_strmapi, ft_striteri, ft_putchar_fd, ft_putstr_fd, ft_putendl_fd, ft_putnbr_fd. --- tests/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tests/Makefile') diff --git a/tests/Makefile b/tests/Makefile index c0c8059..61b7d44 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -7,7 +7,8 @@ BINDIR = bin LIB = ../lib/libft.a TESTS = test_strlen test_is test_mem test_cmp test_case test_strl test_search \ - test_atoi test_alloc + test_atoi test_alloc test_substr test_strjoin test_strtrim \ + test_split test_itoa test_strmapi test_striteri test_put BINS = $(TESTS:%=$(BINDIR)/%) -- cgit v1.2.3