fixing some issues on the checker error and need to fix a last thing on the bucket range algo

This commit is contained in:
Maoake Teriierooiterai
2026-01-09 14:57:05 +01:00
parent be9d265fb5
commit ad855e5915
4 changed files with 19 additions and 1 deletions

View File

@@ -21,6 +21,8 @@ static int scan_str_is_digit(char *tab)
{
if (!ft_isdigit(tab[i]) && (tab[i] == '-' && !ft_isdigit(tab[i + 1])))
return (0);
if (tab[i] == '+' && !ft_isdigit(tab[i + 1]))
return (0);
i++;
}
return (1);