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_uintlen_base.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'libft/src/ft_uintlen_base.c') diff --git a/libft/src/ft_uintlen_base.c b/libft/src/ft_uintlen_base.c index a695c3f..2afcb2e 100644 --- a/libft/src/ft_uintlen_base.c +++ b/libft/src/ft_uintlen_base.c @@ -11,12 +11,11 @@ /* ************************************************************************** */ #include -#include -uint8_t ft_uintlen_base(unsigned long n, char *base) +unsigned char ft_uintlen_base(unsigned long n, char *base) { - uint8_t len; - uint8_t size; + unsigned char len; + unsigned char size; size = ft_strlen(base); len = 0; -- cgit v1.2.3