From a779c1040e3c4f956eb1992c23558ceaab383a17 Mon Sep 17 00:00:00 2001 From: Raphael Date: Thu, 4 Sep 2025 11:49:07 +0200 Subject: [PATCH] refactor(convert): normed the convert functions - Norme was not passed after the modification but corrected now --- convert/ft_atoi.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/convert/ft_atoi.c b/convert/ft_atoi.c index bffd529..d7eccaa 100644 --- a/convert/ft_atoi.c +++ b/convert/ft_atoi.c @@ -6,12 +6,10 @@ /* By: rparodi +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/11/08 17:22:41 by rparodi #+# #+# */ -/* Updated: 2024/10/31 15:16:10 by rparodi ### ########.fr */ +/* Updated: 2025/09/04 11:39:58 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ - - static int ft_check_space(int c) { if (c == 32 || (c >= 9 && c <= 13))