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');
}

References