ft_substr: initial implementation

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