From 68e6c61de963fee3abcab5a1ef164924f82675ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20GUEZO?= Date: Mon, 29 Sep 2025 19:54:07 +0200 Subject: [PATCH] fix: const char -> int, first parameter --- ft_isalpha.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ft_isalpha.c b/ft_isalpha.c index 111bdc2..0133c88 100644 --- a/ft_isalpha.c +++ b/ft_isalpha.c @@ -1,6 +1,6 @@ #include "libft.h" -int ft_isalpha(const char c) +int ft_isalpha(int c) { return ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z'));