ecriture tests var_arg

This commit is contained in:
Hugo LAMY
2020-01-06 17:27:04 +01:00
parent 40a409963d
commit b3ef54c38b
2 changed files with 111 additions and 47 deletions

View File

@@ -4,6 +4,19 @@
# include <stdio.h>
# include <stdarg.h>
int ft_printf(char *fmt, ...);
int ft_printf(char *string, ...);
typedef struct s_prist
{
int print_nbr;
int arg_nbr;
int flag;
int width;
int precision;
char *length;
char specifier;
char *arg;
struct s_prist *next;
} t_prist;
#endif