Go to the source code of this file.
Defines |
| #define | WEOF (wint_t)(0xFFFF) |
| #define | _CRT_CTYPEDATA_DEFINED |
| #define | __PCTYPE_FUNC __pctype_func() |
| #define | __pctype_func() (*_imp___pctype) |
| #define | _pctype (*_imp___pctype) |
| #define | _CRT_WCTYPEDATA_DEFINED |
| #define | _wctype (*_imp___wctype) |
| #define | _pwctype (*_imp___pwctype) |
| #define | __pwctype_func() (*_imp___pwctype) |
| #define | _UPPER 0x1 |
| #define | _LOWER 0x2 |
| #define | _DIGIT 0x4 |
| #define | _SPACE 0x8 |
| #define | _PUNCT 0x10 |
| #define | _CONTROL 0x20 |
| #define | _BLANK 0x40 |
| #define | _HEX 0x80 |
| #define | _LEADBYTE 0x8000 |
| #define | _ALPHA (0x0100|_UPPER|_LOWER) |
| #define | _WCTYPE_DEFINED |
| #define | _WCTYPE_INLINE_DEFINED |
| #define | iswalpha(_c) (iswctype(_c,_ALPHA)) |
| #define | iswupper(_c) (iswctype(_c,_UPPER)) |
| #define | iswlower(_c) (iswctype(_c,_LOWER)) |
| #define | iswdigit(_c) (iswctype(_c,_DIGIT)) |
| #define | iswxdigit(_c) (iswctype(_c,_HEX)) |
| #define | iswspace(_c) (iswctype(_c,_SPACE)) |
| #define | iswpunct(_c) (iswctype(_c,_PUNCT)) |
| #define | iswalnum(_c) (iswctype(_c,_ALPHA|_DIGIT)) |
| #define | iswprint(_c) (iswctype(_c,_BLANK|_PUNCT|_ALPHA|_DIGIT)) |
| #define | iswgraph(_c) (iswctype(_c,_PUNCT|_ALPHA|_DIGIT)) |
| #define | iswcntrl(_c) (iswctype(_c,_CONTROL)) |
| #define | iswascii(_c) ((unsigned)(_c) < 0x80) |
| #define | isleadbyte(c) (__pctype_func()[(unsigned char)(c)] & _LEADBYTE) |
Typedefs |
| typedef wchar_t | wctrans_t |
Functions |
| int __cdecl | iswalpha (wint_t) |
| int __cdecl | iswupper (wint_t) |
| int __cdecl | iswlower (wint_t) |
| int __cdecl | iswdigit (wint_t) |
| int __cdecl | iswxdigit (wint_t) |
| int __cdecl | iswspace (wint_t) |
| int __cdecl | iswpunct (wint_t) |
| int __cdecl | iswalnum (wint_t) |
| int __cdecl | iswprint (wint_t) |
| int __cdecl | iswgraph (wint_t) |
| int __cdecl | iswcntrl (wint_t) |
| int __cdecl | iswascii (wint_t) |
| int __cdecl | isleadbyte (int) |
| wint_t __cdecl | towupper (wint_t) |
| wint_t __cdecl | towlower (wint_t) |
| int __cdecl | iswctype (wint_t, wctype_t) |
| _CRTIMP int __cdecl | __iswcsymf (wint_t) |
| _CRTIMP int __cdecl | __iswcsym (wint_t) |
| int __cdecl | is_wctype (wint_t, wctype_t) |
| _CRTIMP int __cdecl | iswblank (wint_t _C) |
| wint_t __cdecl | towctrans (wint_t, wctrans_t) |
| wctrans_t __cdecl | wctrans (const char *) |
| wctype_t __cdecl | wctype (const char *) |
Variables |
| unsigned short ** | _imp___pctype |
| unsigned short ** | _imp___wctype |
| unsigned short ** | _imp___pwctype |