22 lines
1015 B
C
22 lines
1015 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_isalnum.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: nalebrun <nalebrun@student.s19.be> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/10/10 10:12:06 by nalebrun #+# #+# */
|
|
/* Updated: 2024/11/25 16:14:32 by nalebrun ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "../../libft.h"
|
|
|
|
int ft_isalnum(int c)
|
|
{
|
|
if (ft_isalpha(c) || ft_isdigit(c))
|
|
return (1);
|
|
else
|
|
return (0);
|
|
}
|