#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