fix(char/ischar): fix the work of the function

- Didn't now why the moulinette was working
This commit is contained in:
Raphael 2025-09-04 18:54:19 +02:00
parent ad0f9d001e
commit 4c6a17811f
No known key found for this signature in database
3 changed files with 6 additions and 6 deletions

View file

@ -6,7 +6,7 @@
/* By: rparodi <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/06 11:58:37 by rparodi #+# #+# */
/* Updated: 2025/09/04 11:42:06 by rparodi ### ########.fr */
/* Updated: 2025/09/04 18:13:06 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
@ -19,6 +19,6 @@
int ft_isalpha(int c)
{
if ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z'))
return (c);
return (1);
return (0);
}