aboutsummaryrefslogtreecommitdiff
path: root/ft_isalpha.c
blob: cd09abbc902295bd95c5bf6286247beec6332010 (plain)
1
2
3
4
int ft_isalpha(int c)
{
    return ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z'));
}