Home | History | Annotate | Download | only in bison

Lines Matching refs:ISLOWER

3296 # define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
3297 # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
3299 # define ISLOWER(c) \
3303 # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
3312 if (XOR (islower (i), ISLOWER (i))