ft_strjoin: initial implementation

This commit is contained in:
Khaïs COLIN 2024-10-17 12:11:30 +02:00
parent 7d896b939c
commit d8ec79480f
3 changed files with 49 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/17 11:44:01 by kcolin ### ########.fr #
# Updated: 2024/10/17 12:03:18 by kcolin ### ########.fr #
# #
# **************************************************************************** #
@ -35,7 +35,8 @@ SOURCES = ft_isalpha.c \
ft_atoi.c \
ft_calloc.c \
ft_strdup.c \
ft_substr.c
ft_substr.c \
ft_strjoin.c
OBJECTS = $(SOURCES:.c=.o)
CC = gcc