From 8f3e1c37b67ae18ece6140e497e48139c43f8253 Mon Sep 17 00:00:00 2001 From: Charles Date: Tue, 8 Oct 2019 20:01:35 +0200 Subject: Added Makefile, ft_printf template --- ft_printf.h | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 ft_printf.h (limited to 'ft_printf.h') diff --git a/ft_printf.h b/ft_printf.h new file mode 100644 index 0000000..f3c09ab --- /dev/null +++ b/ft_printf.h @@ -0,0 +1,6 @@ +#ifndef FT_PRINTF_H +# define FT_PRINTF_H + +int ft_printf(const char *format, ...); + +#endif -- cgit