From 4ede84d4ab98c75ed8655607fe64c205b79ed986 Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Tue, 29 Sep 2020 19:18:30 +0200 Subject: libft norm in progress --- libft/src/ft_printf.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'libft/src/ft_printf.c') diff --git a/libft/src/ft_printf.c b/libft/src/ft_printf.c index ec1922f..1f63acf 100644 --- a/libft/src/ft_printf.c +++ b/libft/src/ft_printf.c @@ -16,8 +16,7 @@ #include #include -static int - ft_printf_return(t_printflist *pflist) +static int ft_printf_return(t_printflist *pflist) { int ret; @@ -28,14 +27,13 @@ static int return (ret); } -int - ft_printf(const char *format, ...) +int ft_printf(const char *format, ...) { t_printflist *pflist; va_list arg; int pos; - if (!format) + if (format == NULL) return (-1); if ((pos = ft_strlchr(format, '%')) < 0) return (ft_putstr(format)); -- cgit v1.2.3