Files
libft/ft_isalnum.c

7 lines
88 B
C

#include "libft.h"
int ft_isalnum(int c)
{
return (ft_isdigit(c) || ft_isalpha(c));
}