ft_split: initial implementation

This commit is contained in:
Khaïs COLIN 2024-10-17 17:02:35 +02:00
parent 5ec841de7f
commit d1b5c7b687
3 changed files with 116 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 12:36:39 by kcolin ### ########.fr #
# Updated: 2024/10/17 14:12:23 by kcolin ### ########.fr #
# #
# **************************************************************************** #
@ -37,7 +37,8 @@ SOURCES = ft_isalpha.c \
ft_strdup.c \
ft_substr.c \
ft_strjoin.c \
ft_strtrim.c
ft_strtrim.c \
ft_split.c
OBJECTS = $(SOURCES:.c=.o)
CC = gcc