From d9af81e9c36b444ad90a5b435c9cecae628a3de1 Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Mon, 24 Aug 2020 16:33:51 +0200 Subject: Added strtok to libft --- libft/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'libft/Makefile') diff --git a/libft/Makefile b/libft/Makefile index 81cc2fd..6ada2e1 100644 --- a/libft/Makefile +++ b/libft/Makefile @@ -15,7 +15,7 @@ OBJS_DIR = obj/ #==============================================================================# INCS = libft.h #------------------------------------------------------------------------------# -SRCS_NAME = ft_memset.c +SRCS_NAME = ft_memset.c SRCS_NAME += ft_bzero.c SRCS_NAME += ft_memcpy.c SRCS_NAME += ft_memccpy.c @@ -41,6 +41,8 @@ SRCS_NAME += ft_strncmp.c SRCS_NAME += ft_strlcpy.c SRCS_NAME += ft_strlcat.c SRCS_NAME += ft_strnstr.c +SRCS_NAME += ft_strtok_r.c +SRCS_NAME += ft_strtok.c SRCS_NAME += ft_atoi.c SRCS_NAME += ft_calloc.c SRCS_NAME += ft_nrealloc.c -- cgit v1.2.3