ft_isascii
Subject
ISASCII(3) (simplified)
NAME
isascii -- test for ASCII character
SYNOPSIS
int isascii(int c)
DESCRIPTION
The isascii() function tests for an ASCII character, which is any character between 0 and octal 0177 inclusive.Understandable explanation
Hints
int ft_isascii(int c)
{
if (/* c is between 0 and decimal 127 */)
return (/* non-zero value of your choice */);
return (0);
}Commente solution
Last updated