Home | History | Annotate | Download | only in tcpdump

Lines Matching refs:ISLOWER

3700 # define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
3701 # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
3703 # define ISLOWER(c) \
3707 # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
3716 if (XOR (islower (i), ISLOWER (i))