Home | History | Annotate | Download | only in source

Lines Matching refs:ISLOWER

4325 # define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
4326 # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
4328 # define ISLOWER(c) \
4332 # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
4341 if (XOR (islower (i), ISLOWER (i))