- re-added ft_putchar/putnbr/putstr without fd

- added const for pointers in these functions
This commit is contained in:
asus
2024-01-11 10:36:13 +01:00
parent f32d4bbc96
commit 603303a21b
8 changed files with 104 additions and 8 deletions

View File

@@ -69,10 +69,14 @@ SRCS = ft_memset.c \
ft_itoa.c \
ft_utoa.c \
\
ft_putchar.c \
ft_putstr.c \
ft_putnbr.c \
ft_putnbrbase.c \
ft_putchar_fd.c \
ft_putstr_fd.c \
ft_putnbr_fd.c \
ft_putnbrbase.c \
ft_putnbrbase_fd.c \
\
ft_lstcreate.c \
ft_lstpush_back.c \