ft_tolower: initial implementation

This commit is contained in:
Khaïs COLIN 2024-10-16 10:32:29 +02:00
parent 21e04cc22c
commit 1eb276c8cf
3 changed files with 40 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 09:58:22 by kcolin ### ########.fr #
# Updated: 2024/10/16 10:30:28 by kcolin ### ########.fr #
# #
# **************************************************************************** #
@ -24,7 +24,8 @@ SOURCES = ft_isalpha.c \
ft_memmove.c \
ft_strlcpy.c \
ft_strlcat.c \
ft_toupper.c
ft_toupper.c \
ft_tolower.c
OBJECTS = $(SOURCES:.c=.o)
CC = gcc