ecriture tests var_arg
This commit is contained in:
15
ft_printf.h
15
ft_printf.h
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user