Revert "last sec fix"

This reverts commit e673be640c.
This commit is contained in:
2025-10-29 09:30:47 +01:00
parent 89c418d7bc
commit 5a62c80790
3 changed files with 2 additions and 6 deletions

View File

@@ -21,7 +21,7 @@ int ft_isnumeric(char *str)
return (1);
while (str[i])
{
if (ft_isdigit(str[i]) || str[i] == '+' || str[i] == '-')
if (ft_isdigit(str[i]))
i++;
else
return (0);