From d22609e03717283e85a23587203af1b8b7d2fde2 Mon Sep 17 00:00:00 2001 From: Charles Date: Thu, 16 Jan 2020 10:15:08 +0100 Subject: Added ft_strcount --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 6758101..392b40c 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ # By: cacharle +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2019/10/08 15:45:53 by cacharle #+# #+# # -# Updated: 2019/10/17 13:39:09 by cacharle ### ########.fr # +# Updated: 2020/01/16 07:45:42 by cacharle ### ########.fr # # # # **************************************************************************** # @@ -25,7 +25,7 @@ SRC = ft_atoi.c ft_bzero.c ft_isalnum.c ft_isalpha.c ft_isascii.c ft_isdigit.c f ft_striteri.c ft_strjoin.c ft_strlcat.c ft_strlen.c ft_strmap.c ft_strmapi.c \ ft_strncat.c ft_strncmp.c ft_strncpy.c ft_strnequ.c ft_strnew.c ft_strnstr.c \ ft_strrchr.c ft_split.c ft_strstr.c ft_substr.c ft_strtrim.c ft_tolower.c \ - ft_toupper.c ft_strlcpy.c ft_calloc.c + ft_toupper.c ft_strlcpy.c ft_calloc.c ft_strcount.c OBJ = $(SRC:.c=.o) INCLUDE = libft.h -- cgit