21 lines
1002 B
C
21 lines
1002 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_isalnum.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: dgaillet <dgaillet@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/11/05 10:46:12 by dgaillet #+# #+# */
|
|
/* Updated: 2025/11/05 10:47:18 by dgaillet ### ########lyon.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
int ft_isalnum(int c)
|
|
{
|
|
if (ft_isalpha(c) || ft_isdigit(c))
|
|
return (1);
|
|
return (0);
|
|
}
|