Files
42_INT_03_ft_printf/ft_printf.h

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