From 6c1aafa436b0ef0011e82abec2fff63e8d03767e Mon Sep 17 00:00:00 2001 From: whaffman Date: Mon, 3 Mar 2025 23:07:02 +0100 Subject: [PATCH] norm --- src/string/ft_isdigit_str.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/string/ft_isdigit_str.c b/src/string/ft_isdigit_str.c index 919d4ec..4fe18d8 100644 --- a/src/string/ft_isdigit_str.c +++ b/src/string/ft_isdigit_str.c @@ -6,7 +6,7 @@ /* By: whaffman +#+ */ /* +#+ */ /* Created: 2025/02/20 15:40:24 by whaffman #+# #+# */ -/* Updated: 2025/03/03 14:45:48 by whaffman ######## odam.nl */ +/* Updated: 2025/03/03 23:03:13 by whaffman ######## odam.nl */ /* */ /* ************************************************************************** */ @@ -14,7 +14,7 @@ int ft_isdigit_str(char *str) { - if(*str == '-' || *str == '+') + if (*str == '-' || *str == '+') str++; while (*str) {