Files
42_INT_03_ft_printf/ft_printf.h
2020-02-10 13:59:22 +01:00

16 lines
253 B
C

#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdlib.h>
# include <stdio.h>
# include <stdarg.h>
# include <libc.h>
int ft_printf(char *string, ...);
int width_precision(char *s);
int word_length(char *s);
char *next_word(char **s);
#endif