ft_isascii - gabrielcoelhodacunha-old/42sp-libft GitHub Wiki

Description

Checks if c is an ASCII character.

Implementation

int	ft_isascii(int c)
{
	return (c >= 0 && c <= 127);
}

References