ft_strlcpy: initial implementation

This commit is contained in:
Khaïs COLIN 2024-10-15 14:54:04 +02:00
parent 29fbed55a3
commit a7ffedf420
2 changed files with 39 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/15 13:56:10 by kcolin ### ########.fr #
# Updated: 2024/10/15 14:53:02 by kcolin ### ########.fr #
# #
# **************************************************************************** #
@ -21,7 +21,8 @@ SOURCES = ft_isalpha.c \
ft_memset.c \
ft_bzero.c \
ft_memcpy.c \
ft_memmove.c
ft_memmove.c \
ft_strlcpy.c
OBJECTS = $(SOURCES:.c=.o)
CC = gcc