#ifndef FT_PRINTF_H # define FT_PRINTF_H # include # include # include # include int ft_printf(char *string, ...); int width_precision(char *s); int word_length(char *s); char *next_word(char **s); #endif