fix: new line error ft_isascii

This commit is contained in:
2025-09-28 21:58:31 +02:00
parent 8187470c79
commit 88e1b8e34f

View File

@@ -1,4 +1,4 @@
int ft_isascii(int c) int ft_isascii(int c)
{ {
return (c >= 0 && c <= 127); return (c >= 0 && c <= 127);
} }