Home | History | Annotate | Download | only in ninfod

Lines Matching refs:ISLOWER

3445 # define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
3446 # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
3448 # define ISLOWER(c) \
3452 # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
3461 if (XOR (islower (i), ISLOWER (i))