From 2b741aba7ac9f3cd1488f86dd5e1fe11d579eb9a Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Tue, 27 Oct 2020 20:27:21 +0100 Subject: Norming libft --- libft/src/ft_itoa_base.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libft/src/ft_itoa_base.c') diff --git a/libft/src/ft_itoa_base.c b/libft/src/ft_itoa_base.c index 091b47c..5889240 100644 --- a/libft/src/ft_itoa_base.c +++ b/libft/src/ft_itoa_base.c @@ -15,8 +15,8 @@ char *ft_itoa_base(long n, char *base) { - char *s; - long nb; + char *s; + long nb; unsigned char i; i = ft_intlen_base(n, base) - 1; -- cgit v1.2.3