ft_memcmp: initial implementation

also fix a small clarity issue in ft_strncmp
This commit is contained in:
Khaïs COLIN 2024-10-16 15:34:30 +02:00
parent b81ad331b5
commit 1c3df31518
4 changed files with 54 additions and 4 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 13:50:09 by kcolin ### ########.fr #
# Updated: 2024/10/16 15:22:08 by kcolin ### ########.fr #
# #
# **************************************************************************** #
@ -29,7 +29,8 @@ SOURCES = ft_isalpha.c \
ft_strchr.c \
ft_strrchr.c \
ft_strncmp.c \
ft_memchr.c
ft_memchr.c \
ft_memcmp.c
OBJECTS = $(SOURCES:.c=.o)
CC = gcc