ReactOS 0.4.16-dev-2534-gdcd45a5
corecrt_wctype.h
Go to the documentation of this file.
1
6#ifndef _WCTYPE_DEFINED
7#define _WCTYPE_DEFINED
8
9#include <corecrt.h>
10
11#ifdef __cplusplus
12extern "C" {
13#endif
14
15/* ASCII char classification table - binary compatible */
16#define _UPPER 0x0001 /* C1_UPPER */
17#define _LOWER 0x0002 /* C1_LOWER */
18#define _DIGIT 0x0004 /* C1_DIGIT */
19#define _SPACE 0x0008 /* C1_SPACE */
20#define _PUNCT 0x0010 /* C1_PUNCT */
21#define _CONTROL 0x0020 /* C1_CNTRL */
22#define _BLANK 0x0040 /* C1_BLANK */
23#define _HEX 0x0080 /* C1_XDIGIT */
24#define _LEADBYTE 0x8000
25#define _ALPHA (0x0100|_UPPER|_LOWER) /* (C1_ALPHA|_UPPER|_LOWER) */
26
27_ACRTIMP const unsigned short* __cdecl __pctype_func(void);
62
63#ifdef __cplusplus
64}
65#endif
66
67#endif /* _WCTYPE_DEFINED */
#define _isleadbyte_l(_C, _L)
#define __cdecl
Definition: corecrt.h:121
#define _ACRTIMP
Definition: corecrt.h:153
unsigned short wint_t
Definition: corecrt.h:243
unsigned short wctype_t
Definition: corecrt.h:244
_ACRTIMP wint_t __cdecl _towlower_l(wint_t, _locale_t)
Definition: wcs.c:96
_ACRTIMP int __cdecl _iswctype_l(wint_t, wctype_t, _locale_t)
Definition: wcs.c:2221
_ACRTIMP int __cdecl iswctype(wint_t, wctype_t)
Definition: freeldr.c:165
_ACRTIMP wint_t __cdecl _towupper_l(wint_t, _locale_t)
Definition: wcs.c:2932
_ACRTIMP int __cdecl is_wctype(wint_t, wctype_t)
Definition: is_wctype.cpp:33
_ACRTIMP const unsigned short *__cdecl __pctype_func(void)
Definition: ctype.c:141
#define iswgraph(_c)
Definition: ctype.h:673
#define _iswdigit_l(_c, _p)
Definition: ctype.h:679
#define _iswlower_l(_c, _p)
Definition: ctype.h:678
#define iswcntrl(_c)
Definition: ctype.h:674
#define iswspace(_c)
Definition: ctype.h:669
#define _iswupper_l(_c, _p)
Definition: ctype.h:677
#define iswupper(_c)
Definition: ctype.h:665
#define _iswspace_l(_c, _p)
Definition: ctype.h:681
#define _iswgraph_l(_c, _p)
Definition: ctype.h:685
#define iswdigit(_c)
Definition: ctype.h:667
#define iswalnum(_c)
Definition: ctype.h:671
#define iswlower(_c)
Definition: ctype.h:666
#define _iswxdigit_l(_c, _p)
Definition: ctype.h:680
#define iswascii(_c)
Definition: ctype.h:675
#define _iswprint_l(_c, _p)
Definition: ctype.h:684
#define _iswalpha_l(_c, _p)
Definition: ctype.h:676
#define iswprint(_c)
Definition: ctype.h:672
#define _iswpunct_l(_c, _p)
Definition: ctype.h:682
#define _iswcntrl_l(_c, _p)
Definition: ctype.h:686
#define iswxdigit(_c)
Definition: ctype.h:668
#define _iswalnum_l(_c, _p)
Definition: ctype.h:683
#define iswpunct(_c)
Definition: ctype.h:670
#define iswalpha(_c)
Definition: ctype.h:664
#define isleadbyte(_c)
Definition: wchar.h:598
#define iswblank(_c)
#define _iswblank_l(_c, _p)
#define towlower(c)
Definition: wctype.h:97
#define towupper(c)
Definition: wctype.h:99