ft_strrchr: intial implementation

This commit is contained in:
Khaïs COLIN 2024-10-16 10:52:03 +02:00
parent 3754c47e8c
commit 10cf338cbf
3 changed files with 50 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/16 10:46:03 by kcolin ### ########.fr #
# Updated: 2024/10/16 10:46:46 by kcolin ### ########.fr #
# #
# **************************************************************************** #
@ -26,7 +26,8 @@ SOURCES = ft_isalpha.c \
ft_strlcat.c \
ft_toupper.c \
ft_tolower.c \
ft_strchr.c
ft_strchr.c \
ft_strrchr.c
OBJECTS = $(SOURCES:.c=.o)
CC = gcc