ft_strlcat: initial implementation

This commit is contained in:
Khaïs COLIN 2024-10-15 16:17:49 +02:00
parent a7ffedf420
commit 870ce44765
3 changed files with 66 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/15 14:53:02 by kcolin ### ########.fr #
# Updated: 2024/10/15 16:00:12 by kcolin ### ########.fr #
# #
# **************************************************************************** #
@ -22,7 +22,8 @@ SOURCES = ft_isalpha.c \
ft_bzero.c \
ft_memcpy.c \
ft_memmove.c \
ft_strlcpy.c
ft_strlcpy.c \
ft_strlcat.c
OBJECTS = $(SOURCES:.c=.o)
CC = gcc