wctype_t
extern int iswctype(wint_t wc, wctype_t desc);
extern wctype_t wctype(const char *property);
extern int iswctype_l(wint_t wc, wctype_t desc, locale_t locale);
extern wctype_t wctype_l(const char *property, locale_t locale);
int IsWCType(wint_t wc, wctype_t charClass);
virtual int IsWCType(wint_t wc, wctype_t charClass);
virtual int IsWCType(wint_t wc, wctype_t charClass) = 0;
ICUCtypeData::IsWCType(wint_t wc, wctype_t charClass)
ICULocaleBackend::IsWCType(wint_t wc, wctype_t charClass)
wctype_t *new_char_classes = re_realloc (mbcset->char_classes, wctype_t,
size_t max_i18n_object_size = MAX (sizeof (wchar_t), sizeof (wctype_t));
wctype_t *char_classes;
wctype_t wt = cset->char_classes[i];
wctype_t
iswctype(wint_t wc, wctype_t charClass)
wctype_t
iswctype_l(wint_t wc, wctype_t charClass, locale_t l)
wctype_t bit_alnum = wctype("alnum");
wctype_t bit_alpha = wctype("alpha");
wctype_t bit_cntrl = wctype("cntrl");
wctype_t bit_digit = wctype("digit");
wctype_t bit_graph = wctype("graph");
wctype_t bit_lower = wctype("lower");
wctype_t bit_print = wctype("print");
wctype_t bit_punct = wctype("punct");
wctype_t bit_space = wctype("space");
wctype_t bit_upper = wctype("upper");
wctype_t bit_xdigit = wctype("xdigit");