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