/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isnum.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cchauvet #include bool ft_isnum(char str[]) { size_t i; size_t num; num = 0; i = 0; while (str[i] != '\0') { if (str[i] > '9' || str[i] < '0') return (0); num = num * 10 + str[i] - 48; if (num > INT_MAX) return (0); i++; } return (1); }