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 12:47:28 by rparodi #+# #+# */
/* Updated: 2025/09/01 18:31:27 by rparodi ### ########.fr */
/* Updated: 2025/09/04 18:12:52 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
@ -21,6 +21,6 @@
int ft_isalnum(int c)
{
if (ft_isalpha(c) || ft_isdigit(c))
return (c);
return (1);
return (0);
}