From 7e80beedb850cb33c813cd34cd954f0ab1defdbc Mon Sep 17 00:00:00 2001 From: Raphael Date: Fri, 5 Sep 2025 16:30:55 +0200 Subject: [PATCH] build(str/strncpy): adding strncpy to the makefile - The file was here but not on the makefile so now it's patched --- Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 4aae38c..cb9d296 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ # By: rparodi +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2023/11/12 11:05:05 by rparodi #+# #+# # -# Updated: 2025/09/05 15:10:23 by rparodi ### ########.fr # +# Updated: 2025/09/05 16:21:13 by rparodi ### ########.fr # # # # **************************************************************************** # @@ -30,10 +30,10 @@ CPPFLAGS = $(addprefix -I, $(INC_DIR)) -MMD -MP OBJDIRNAME = ./build OBJ = $(addprefix $(OBJDIRNAME)/,$(SRC:.c=.o)) -SRC = char/ft_isdigit.c \ - char/ft_isalnum.c \ +SRC = char/ft_isalnum.c \ char/ft_isalpha.c \ char/ft_isascii.c \ + char/ft_isdigit.c \ char/ft_isprint.c \ char/ft_tolower.c \ char/ft_toupper.c \ @@ -74,6 +74,7 @@ SRC = char/ft_isdigit.c \ str/ft_strlen.c \ str/ft_strmapi.c \ str/ft_strncmp.c \ + str/ft_strncpy.c \ str/ft_strnstr.c \ str/ft_strrchr.c \ str/ft_strtrim.c \