This commit is contained in:
Camille Chauvet
2022-10-10 19:33:47 +02:00
parent 780ac9ced3
commit af946dbf97
40 changed files with 286 additions and 137 deletions

View File

@ -6,10 +6,25 @@
# By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2022/09/27 08:39:27 by cchauvet #+# #+# #
# Updated: 2022/10/06 16:37:11 by cchauvet ### ########.fr #
# Updated: 2022/10/10 14:34:40 by cchauvet ### ########.fr #
# #
# **************************************************************************** #
SRCS =
SRCS = ft_ctoa.c \
ft_itoa.c \
ft_ltoabase.c \
ft_printf.c \
ft_ptoa.c \
ft_putchar_fd.c \
ft_putendl_fd.c \
ft_putstr_fd.c \
ft_strchr.c \
ft_strdup.c \
ft_strjoin.c \
ft_strlen.c \
ft_ultoabase.c \
ft_vdprintf.c \
ft_vprintf.c \
ft_vsprintf.c
OBJS = ${SRCS:.c=.o}