ft_memset: initial implementation

This commit is contained in:
Khaïs COLIN 2024-10-15 11:19:02 +02:00
parent 8e87d9f316
commit 872595f75b
3 changed files with 32 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/14 15:11:56 by kcolin ### ########.fr #
# Updated: 2024/10/15 10:49:47 by kcolin ### ########.fr #
# #
# **************************************************************************** #
@ -17,7 +17,8 @@ SOURCES = ft_isalpha.c \
ft_isalnum.c \
ft_isascii.c \
ft_isprint.c \
ft_strlen.c
ft_strlen.c \
ft_memset.c
OBJECTS = $(SOURCES:.c=.o)
CC = gcc