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.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libft/src/ft_itoa.c') diff --git a/libft/src/ft_itoa.c b/libft/src/ft_itoa.c index a243719..e80792d 100644 --- a/libft/src/ft_itoa.c +++ b/libft/src/ft_itoa.c @@ -15,8 +15,8 @@ char *ft_itoa(long n) { - char *s; - long nb; + char *s; + long nb; unsigned char i; i = ft_intlen(n) - 1; -- cgit v1.2.3