ft_strchr: initial implementation

This commit is contained in:
Khaïs COLIN 2024-10-16 10:46:16 +02:00
parent 1eb276c8cf
commit 3754c47e8c
3 changed files with 50 additions and 3 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 10:30:28 by kcolin ### ########.fr #
# Updated: 2024/10/16 10:46:03 by kcolin ### ########.fr #
# #
# **************************************************************************** #
@ -25,7 +25,8 @@ SOURCES = ft_isalpha.c \
ft_strlcpy.c \
ft_strlcat.c \
ft_toupper.c \
ft_tolower.c
ft_tolower.c \
ft_strchr.c
OBJECTS = $(SOURCES:.c=.o)
CC = gcc