Searched refs:type (Results 1 – 3 of 3) sorted by relevance
23 #define func(name, type) \ argument24 int name (int c) { return __isctype (c, type); }
23 #define func(name, type) \ argument24 int __##name (int c, locale_t l) { return __isctype_l (c, type, l); } \
88 # define __isctype(c, type) \ argument89 ((*__ctype_b_loc ())[(int) (c)] & (unsigned short int) type)91 # define __isctype_f(type) \ argument93 is##type (int __c) __THROW \95 return (*__ctype_b_loc ())[(int) (__c)] & (unsigned short int) _IS##type; \241 # define __isctype_l(c, type, locale) \ argument242 ((locale)->__ctype_b[(int) (c)] & (unsigned short int) type)
Completed in 6 milliseconds