ft_isalnum - gabrielcoelhodacunha-old/42sp-libft GitHub Wiki
Description
Checks if c
is an ASCII uppercase or lowercase alphabet letter or a decimal digit.
Implementation
int ft_isalnum(int c)
{
return (ft_isalpha(c) || ft_isdigit(c));
}
Checks if c
is an ASCII uppercase or lowercase alphabet letter or a decimal digit.
int ft_isalnum(int c)
{
return (ft_isalpha(c) || ft_isdigit(c));
}