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_intlen.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'libft/src/ft_intlen.c') diff --git a/libft/src/ft_intlen.c b/libft/src/ft_intlen.c index 76d2e4f..a98f2a4 100644 --- a/libft/src/ft_intlen.c +++ b/libft/src/ft_intlen.c @@ -10,11 +10,10 @@ /* */ /* ************************************************************************** */ -#include -uint8_t ft_intlen(long n) +unsigned char ft_intlen(long n) { - uint8_t len; + unsigned char len; len = 0; if (n == 0) -- cgit v1.2.3