mirror of
https://github.com/guezoloic/libft.git
synced 2026-01-25 04:34:14 +00:00
4 lines
55 B
C
4 lines
55 B
C
int ft_isascii(int c)
|
|
{
|
|
return (c >= 0 && c <= 127);
|
|
} |