From c5aae008dee36276154882d8fd56c3bdeb473474 Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Tue, 27 Oct 2020 19:59:20 +0100 Subject: Now norme --- libft/src/ft_itoa.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'libft/src/ft_itoa.c') diff --git a/libft/src/ft_itoa.c b/libft/src/ft_itoa.c index 2c0c14e..a243719 100644 --- a/libft/src/ft_itoa.c +++ b/libft/src/ft_itoa.c @@ -11,14 +11,13 @@ /* ************************************************************************** */ #include -#include #include char *ft_itoa(long n) { char *s; long nb; - uint8_t i; + unsigned char i; i = ft_intlen(n) - 1; if ((s = (char*)malloc((i + 2) * sizeof(char))) == NULL) -- cgit v1.2.3