Lines Matching defs:cmap
63 #define cmap(c, bits) \
66 #define isglob(c) cmap(c, _GLOB)
67 #define isspc(c) cmap(c, _SP)
68 #define ismeta(c) cmap(c, _META)
69 #define iscmdmeta(c) cmap(c, _CMD)
87 #define Isspace(c) cmap(c, _SP|_NL)
88 #define Isdigit(c) cmap(c, _DIG)
89 #define Isalpha(c) (cmap(c,_LET) && !(((c) & META) && AsciiOnly))
90 #define Islower(c) (cmap(c,_LOW) && !(((c) & META) && AsciiOnly))
91 #define Isupper(c) (cmap(c, _UP) && !(((c) & META) && AsciiOnly))
94 #define Isxdigit(c) cmap(c, _XD)
95 #define Isalnum(c) (cmap(c, _DIG|_LET) && !(((c) & META) && AsciiOnly))
96 #define Iscntrl(c) (cmap(c,_CTR) && !(((c) & META) && AsciiOnly))
97 #define Isprint(c) (!cmap(c,_CTR) && !(((c) & META) && AsciiOnly))