precision des commentaires pour le fonctionnement de printf

This commit is contained in:
Hugo LAMY
2020-01-05 18:12:58 +01:00
parent 1a9b45427d
commit d46781ca9c
3 changed files with 407 additions and 321 deletions

9
ft_printf.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdlib.h>
# include <stdio.h>
# include <stdarg.h>
int ft_printf(char *fmt, ...);
#endif