From 4e16203d49405cc0eb81d82693e8606e80d004fd Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Tue, 29 Sep 2020 19:00:27 +0200 Subject: Some norm --- libft/src/ft_intlen_base.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'libft/src/ft_intlen_base.c') diff --git a/libft/src/ft_intlen_base.c b/libft/src/ft_intlen_base.c index 47da31d..99c0ff2 100644 --- a/libft/src/ft_intlen_base.c +++ b/libft/src/ft_intlen_base.c @@ -13,15 +13,14 @@ #include #include -uint8_t - ft_intlen_base(long n, char *base) +uint8_t ft_intlen_base(long n, char *base) { uint8_t len; uint8_t size; size = ft_strlen(base); len = 0; - if (!n) + if (n == 0) return (1); if (n < 0) len = 1; -- cgit v1.2.3