From ccf6226d8e0dc412206c5b9271654519357b0e2f Mon Sep 17 00:00:00 2001 From: Dominik Kaiser Date: Fri, 12 Apr 2024 16:44:17 +0200 Subject: Add ft_printf --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 1fdbab6..9e94fb2 100644 --- a/Makefile +++ b/Makefile @@ -36,6 +36,10 @@ SRC_FILES = ft_atoi.c \ ft_substr.c \ ft_tolower.c \ ft_toupper.c \ + ft_printf.c \ + ft_printnbr.c \ + ft_printhex.c \ + ft_printaddr.c OBJ_FILES = $(SRC_FILES:.c=.o) -- cgit v1.2.3