ft_strnstr: initial implementation

This commit is contained in:
Khaïs COLIN 2024-10-16 15:59:48 +02:00
parent 1c3df31518
commit 0a1e2f2b37
3 changed files with 66 additions and 2 deletions

View file

@ -6,7 +6,7 @@
# By: kcolin <marvin@42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2024/10/14 13:43:59 by kcolin #+# #+# #
# Updated: 2024/10/16 15:22:08 by kcolin ### ########.fr #
# Updated: 2024/10/16 15:38:09 by kcolin ### ########.fr #
# #
# **************************************************************************** #
@ -30,7 +30,8 @@ SOURCES = ft_isalpha.c \
ft_strrchr.c \
ft_strncmp.c \
ft_memchr.c \
ft_memcmp.c
ft_memcmp.c \
ft_strnstr.c
OBJECTS = $(SOURCES:.c=.o)
CC = gcc