10 lines
144 B
C
10 lines
144 B
C
#ifndef FT_PRINTF_H
|
|
# define FT_PRINTF_H
|
|
# include <stdlib.h>
|
|
# include <stdio.h>
|
|
# include <stdarg.h>
|
|
|
|
int ft_printf(char *fmt, ...);
|
|
|
|
#endif
|