Files
libft/ft_isascii.c

5 lines
56 B
C

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