ft_isdigit - gabrielcoelhodacunha-old/42sp-libft GitHub Wiki
Description
Checks if c
is an ASCII decimal digit.
Implementation
int ft_isdigit(int c)
{
return (c >= '0' && c <= '9');
}
Checks if c
is an ASCII decimal digit.
int ft_isdigit(int c)
{
return (c >= '0' && c <= '9');
}