Searched refs:iswdigit (Results 1 – 16 of 16) sorted by relevance
4 #undef iswdigit6 int iswdigit(wint_t wc) in iswdigit() function
6 return iswdigit(wc) || iswalpha(wc); in iswalnum()
30 return iswdigit(wc); in iswctype()
81 # undef iswdigit96 # define iswdigit rpl_iswdigit macro132 iswdigit (wint_t wc) in iswdigit() function
13 #define iswdigit sun_iswdigit macro33 #undef iswdigit
35 #ifdef iswdigit36 #error iswdigit defined100 static_assert((std::is_same<decltype(iswdigit(w)), int>::value), ""); in main()
34 int iswdigit(wint_t wc);99 #ifdef iswdigit100 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_iswdigit(wint_t __wc) {return iswdigit(__wc);}101 #undef iswdigit102 inline _LIBCPP_INLINE_VISIBILITY int iswdigit(wint_t __wc) {return __libcpp_iswdigit(__wc);}103 #else // iswdigit104 using ::iswdigit;
35 #ifdef iswdigit36 #error iswdigit defined100 static_assert((std::is_same<decltype(std::iswdigit(w)), int>::value), ""); in main()
5 return iswdigit(c); in iswdigit_l()
73 using _STLP_VENDOR_CSTD_WFUNC::iswdigit;
53 int iswdigit(wint_t);
212 int iswdigit(wint_t);
89 __inline int (iswdigit)(int c) { return iswctype((unsigned short)(c), _DIGIT); }
188 for (i=0; iswdigit(**s); (*s)++) in getint()233 if (iswdigit(s[1]) && s[2]=='$') { in wprintf_core()248 if (iswdigit(s[1]) && s[2]=='$') { in wprintf_core()
68 src/musl-ctype/iswdigit.c \
218 if ((mask & _Locale_DIGIT) != 0 && iswdigit(wc)) in _WLocale_ctype()