Files
libft/ft_isascii.c

4 lines
55 B
C

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