Lines Matching defs:c

63 #define cmap(c, bits)	\  argument
66 #define isglob(c) cmap(c, _GLOB) argument
67 #define isspc(c) cmap(c, _SP) argument
68 #define ismeta(c) cmap(c, _META) argument
69 #define iscmdmeta(c) cmap(c, _CMD) argument
70 #define letter(c) (((c) & QUOTE) ? 0 : \ argument
72 #define alnum(c) (((c) & QUOTE) ? 0 : \ argument
75 #define Isspace(c) (((c) & QUOTE) ? 0 : isspace((unsigned char) (c))) argument
76 #define Isdigit(c) (((c) & QUOTE) ? 0 : isdigit((unsigned char) (c))) argument
77 #define Isalpha(c) (((c) & QUOTE) ? 0 : isalpha((unsigned char) (c))) argument
78 #define Islower(c) (((c) & QUOTE) ? 0 : islower((unsigned char) (c))) argument
79 #define Isupper(c) (((c) & QUOTE) ? 0 : isupper((unsigned char) (c))) argument
80 #define Tolower(c) (((c) & QUOTE) ? 0 : tolower((unsigned char) (c))) argument
81 #define Toupper(c) (((c) & QUOTE) ? 0 : toupper((unsigned char) (c))) argument
82 #define Isxdigit(c) (((c) & QUOTE) ? 0 : isxdigit((unsigned char) (c))) argument
83 #define Isalnum(c) (((c) & QUOTE) ? 0 : isalnum((unsigned char) (c))) argument
84 #define Iscntrl(c) (((c) & QUOTE) ? 0 : iscntrl((unsigned char) (c))) argument
85 #define Isprint(c) (((c) & QUOTE) ? 0 : isprint((unsigned char) (c))) argument
87 #define Isspace(c) cmap(c, _SP|_NL) argument
88 #define Isdigit(c) cmap(c, _DIG) argument
89 #define Isalpha(c) (cmap(c,_LET) && !(((c) & META) && AsciiOnly)) argument
90 #define Islower(c) (cmap(c,_LOW) && !(((c) & META) && AsciiOnly)) argument
91 #define Isupper(c) (cmap(c, _UP) && !(((c) & META) && AsciiOnly)) argument
92 #define Tolower(c) (_cmap_lower[(unsigned char)(c)]) argument
93 #define Toupper(c) (_cmap_upper[(unsigned char)(c)]) argument
94 #define Isxdigit(c) cmap(c, _XD) argument
95 #define Isalnum(c) (cmap(c, _DIG|_LET) && !(((c) & META) && AsciiOnly)) argument
96 #define Iscntrl(c) (cmap(c,_CTR) && !(((c) & META) && AsciiOnly)) argument
97 #define Isprint(c) (!cmap(c,_CTR) && !(((c) & META) && AsciiOnly)) argument