From 6ea4606cd3f74377691d200d69df8398f90cc2ff Mon Sep 17 00:00:00 2001 From: Charles Date: Sat, 12 Oct 2019 10:43:01 +0200 Subject: Basic conversion parsing Using a list to store each format conversion informations. --- ft_printf.h | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 ft_printf.h (limited to 'ft_printf.h') 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 -- cgit