Lines Matching defs:c

87 #define _sch_test(c, bit) (_sch_istable[(c) & 0xff] & (unsigned short)(bit))  argument
89 #define ISALPHA(c) _sch_test(c, _sch_isalpha) argument
90 #define ISALNUM(c) _sch_test(c, _sch_isalnum) argument
91 #define ISBLANK(c) _sch_test(c, _sch_isblank) argument
92 #define ISCNTRL(c) _sch_test(c, _sch_iscntrl) argument
93 #define ISDIGIT(c) _sch_test(c, _sch_isdigit) argument
94 #define ISGRAPH(c) _sch_test(c, _sch_isgraph) argument
95 #define ISLOWER(c) _sch_test(c, _sch_islower) argument
96 #define ISPRINT(c) _sch_test(c, _sch_isprint) argument
97 #define ISPUNCT(c) _sch_test(c, _sch_ispunct) argument
98 #define ISSPACE(c) _sch_test(c, _sch_isspace) argument
99 #define ISUPPER(c) _sch_test(c, _sch_isupper) argument
100 #define ISXDIGIT(c) _sch_test(c, _sch_isxdigit) argument
102 #define ISIDNUM(c) _sch_test(c, _sch_isidnum) argument
103 #define ISIDST(c) _sch_test(c, _sch_isidst) argument
104 #define IS_ISOBASIC(c) _sch_test(c, _sch_isbasic) argument
105 #define IS_VSPACE(c) _sch_test(c, _sch_isvsp) argument
106 #define IS_NVSPACE(c) _sch_test(c, _sch_isnvsp) argument
107 #define IS_SPACE_OR_NUL(c) _sch_test(c, _sch_iscppsp) argument
112 #define TOUPPER(c) _sch_toupper[(c) & 0xff] argument
113 #define TOLOWER(c) _sch_tolower[(c) & 0xff] argument
124 #define isalpha(c) do_not_use_isalpha_with_safe_ctype argument
126 #define isalnum(c) do_not_use_isalnum_with_safe_ctype argument
128 #define iscntrl(c) do_not_use_iscntrl_with_safe_ctype argument
130 #define isdigit(c) do_not_use_isdigit_with_safe_ctype argument
132 #define isgraph(c) do_not_use_isgraph_with_safe_ctype argument
134 #define islower(c) do_not_use_islower_with_safe_ctype argument
136 #define isprint(c) do_not_use_isprint_with_safe_ctype argument
138 #define ispunct(c) do_not_use_ispunct_with_safe_ctype argument
140 #define isspace(c) do_not_use_isspace_with_safe_ctype argument
142 #define isupper(c) do_not_use_isupper_with_safe_ctype argument
144 #define isxdigit(c) do_not_use_isxdigit_with_safe_ctype argument
146 #define toupper(c) do_not_use_toupper_with_safe_ctype argument
148 #define tolower(c) do_not_use_tolower_with_safe_ctype argument