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. --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 5774cc9..98b4fb0 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,10 @@ SRCS = ft_isalpha.c ft_isdigit.c ft_isalnum.c ft_isascii.c ft_isprint.c \ ft_strlcpy.c ft_strlcat.c \ ft_strchr.c ft_strrchr.c ft_strnstr.c ft_atoi.c \ ft_calloc.c ft_strdup.c \ - ft_toupper.c ft_tolower.c + ft_toupper.c ft_tolower.c \ + ft_substr.c ft_strjoin.c ft_strtrim.c ft_split.c ft_itoa.c \ + ft_strmapi.c ft_striteri.c \ + ft_putchar_fd.c ft_putstr_fd.c ft_putendl_fd.c ft_putnbr_fd.c OBJS = $(SRCS:%.c=$(OBJDIR)/%.o) -- cgit v1.2.3