From 925989f7e7af67d965e2b501a51068acfe449ab0 Mon Sep 17 00:00:00 2001 From: yctct Date: Wed, 28 Jan 2026 12:43:28 +0100 Subject: Add all files, first commit --- ft_printf.h | 19 +++++++++++++++++++ 1 file changed, 19 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..5fffc0f --- /dev/null +++ b/ft_printf.h @@ -0,0 +1,19 @@ +#ifndef FT_PRINTF_H + +# define FT_PRINTF_H + +# include // for INT and MAX values +# include // for variadic function +# include +# include // for write function + +int ft_putchar(char c); +int ft_putstr(char *str); +int ft_putnbr(int n); +int ft_putunsigned(unsigned int nb); +int ft_puthexlower(unsigned long n); +int ft_puthexupper(unsigned int n); +int ft_checkpadd(va_list ap); +int ft_printf(const char *format, ...); + +#endif -- cgit v1.2.3