ft_toupper: initial implementation

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