ft_strncmp: initial implementation

This commit is contained in:
Khaïs COLIN 2024-10-16 13:47:09 +02:00
parent 10cf338cbf
commit b176bdaebe
3 changed files with 53 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:46:46 by kcolin ### ########.fr #
# Updated: 2024/10/16 13:22:00 by kcolin ### ########.fr #
# #
# **************************************************************************** #
@ -27,7 +27,8 @@ SOURCES = ft_isalpha.c \
ft_toupper.c \
ft_tolower.c \
ft_strchr.c \
ft_strrchr.c
ft_strrchr.c \
ft_strncmp.c
OBJECTS = $(SOURCES:.c=.o)
CC = gcc