Home | History | Annotate | Download | only in src

Lines Matching refs:ISLOWER

7318 # define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
7319 # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
7321 # define ISLOWER(c) \
7325 # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
7334 if (XOR (islower (i), ISLOWER (i))