diff options
| author | Charles <sircharlesaze@gmail.com> | 2019-10-12 10:43:01 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2019-10-12 11:48:54 +0200 |
| commit | 6ea4606cd3f74377691d200d69df8398f90cc2ff (patch) | |
| tree | f354459b9054f5bd23a7508c12ef1589af38e75a /ft_printf.h | |
| parent | bddc2d153a4c47257740a0bf0651513058a612d5 (diff) | |
| download | ft_printf-6ea4606cd3f74377691d200d69df8398f90cc2ff.tar.gz ft_printf-6ea4606cd3f74377691d200d69df8398f90cc2ff.tar.bz2 ft_printf-6ea4606cd3f74377691d200d69df8398f90cc2ff.zip | |
Basic conversion parsing
Using a list to store each format conversion informations.
Diffstat (limited to 'ft_printf.h')
| -rw-r--r-- | ft_printf.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/ft_printf.h b/ft_printf.h deleted file mode 100644 index b755f91..0000000 --- a/ft_printf.h +++ /dev/null @@ -1,23 +0,0 @@ -#ifndef FT_PRINTF_H -# define FT_PRINTF_H - -#define PUTXNBR(nb) (ft_putxnbr(nb, "0123456789abcdef")) -#define PUTXMAJNBR(nb) (ft_putxnbr(nb, "0123456789ABCDEF")) - -/* -** ft_printf.c -*/ - -int ft_printf(const char *format, ...); - -/* -** utils.c -*/ - -void ft_putchar(char c); -void ft_putstr(char *str); -void ft_putnbr(int nb); -void ft_putxnbr(unsigned int n, char *hex_symbols); -void ft_putunbr(unsigned int n); - -#endif |
