aboutsummaryrefslogtreecommitdiff
path: root/ft_isascii.c
blob: 7742dede9604639f85802401a1c0966ba57da07c (plain)
1
2
3
4
5
6
#define MAX_CHAR ((1 << 7) - 1)

int ft_isascii(int c)
{
    return (c >= 0 && c <= MAX_CHAR);
}