Home
last modified time | relevance | path

Searched refs:testprop (Results 1 – 1 of 1) sorted by relevance

/external/lua/src/
Dlctype.h52 #define testprop(c,p) (luai_ctype_[(c)+1] & (p)) macro
57 #define lislalpha(c) testprop(c, MASK(ALPHABIT))
58 #define lislalnum(c) testprop(c, (MASK(ALPHABIT) | MASK(DIGITBIT)))
59 #define lisdigit(c) testprop(c, MASK(DIGITBIT))
60 #define lisspace(c) testprop(c, MASK(SPACEBIT))
61 #define lisprint(c) testprop(c, MASK(PRINTBIT))
62 #define lisxdigit(c) testprop(c, MASK(XDIGITBIT))