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