mirror of
https://github.com/guezoloic/libft.git
synced 2026-01-25 03:34:16 +00:00
feat: add ft_isascii function
This commit is contained in:
4
ft_isascii.c
Normal file
4
ft_isascii.c
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
int ft_isascii(int c)
|
||||||
|
{
|
||||||
|
return (c >= 0 && c <= 127);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user