From 88e1b8e34fc8fdb1b7cc32508206a46b485d786e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20GUEZO?= Date: Sun, 28 Sep 2025 21:58:31 +0200 Subject: [PATCH] fix: new line error ft_isascii --- ft_isascii.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ft_isascii.c b/ft_isascii.c index a7037b7..ea14b50 100644 --- a/ft_isascii.c +++ b/ft_isascii.c @@ -1,4 +1,4 @@ int ft_isascii(int c) { return (c >= 0 && c <= 127); -} \ No newline at end of file +}