debut ecriture gestionlst

This commit is contained in:
Hugo LAMY
2020-01-07 16:56:51 +01:00
parent b3ef54c38b
commit 364176b464
5 changed files with 155 additions and 103 deletions

View File

@@ -8,14 +8,15 @@ int ft_printf(char *string, ...);
typedef struct s_prist
{
int print_nbr;
int arg_nbr;
char *str;
int flag;
int width;
int precision;
int prec;
char *length;
char specifier;
char spec;
char *arg;
int p_nb;
int a_nb;
struct s_prist *next;
} t_prist;