Go to the source code of this file.
Macros | |
#define | ALPHABIT 0 |
#define | DIGITBIT 1 |
#define | lisdigit(c) testprop(c, MASK(DIGITBIT)) |
#define | lislalnum(c) testprop(c, (MASK(ALPHABIT) | MASK(DIGITBIT))) |
#define | lislalpha(c) testprop(c, MASK(ALPHABIT)) |
#define | lisprint(c) testprop(c, MASK(PRINTBIT)) |
#define | lisspace(c) testprop(c, MASK(SPACEBIT)) |
#define | lisxdigit(c) testprop(c, MASK(XDIGITBIT)) |
#define | ltolower(c) |
#define | LUA_USE_CTYPE 0 |
#define | MASK(B) (1 << (B)) |
#define | PRINTBIT 2 |
#define | SPACEBIT 3 |
#define | testprop(c, p) (luai_ctype_[(c)+1] & (p)) |
#define | XDIGITBIT 4 |
#define ltolower | ( | c | ) |
#define testprop | ( | c, | |
p | |||
) | (luai_ctype_[(c)+1] & (p)) |