Home | History | Annotate | Download | only in libpcap

Lines Matching refs:ISLOWER

4126 # define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
4127 # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
4129 # define ISLOWER(c) \
4133 # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
4142 if (XOR (islower (i), ISLOWER (i))