#include <corecrt.h>
#include <pshpack8.h>
#include <poppack.h>
Go to the source code of this file.
◆ _ALPHA
◆ _BLANK
◆ _CONTROL
◆ _DIGIT
◆ _HEX
◆ _LEADBYTE
◆ _LOWER
◆ _PUNCT
◆ _SPACE
◆ _UPPER
◆ _WCTYPE_DEFINED
◆ WEOF
◆ wctrans_t
◆ is_wctype()
Definition at line 10 of file is_wctype.c.
11{
13}
int iswctype(wint_t wc, wctype_t wctypeFlags)
◆ isleadbyte()
Definition at line 294 of file ctype.c.
295{
297}
int CDECL _isctype(int c, int type)
◆ iswalnum()
Definition at line 2255 of file wcs.c.
2256{
2258}
#define _iswalnum_l(_c, _p)
◆ iswalpha()
Definition at line 2271 of file wcs.c.
2272{
2274}
#define _iswalpha_l(_c, _p)
◆ iswascii()
Definition at line 434 of file ctype.c.
435{
436 return ((
unsigned)
c < 0x80);
437}
◆ iswcntrl()
Definition at line 2287 of file wcs.c.
2288{
2290}
#define _iswcntrl_l(_c, _p)
◆ iswctype()
◆ iswdigit()
Definition at line 2303 of file wcs.c.
2304{
2306}
#define _iswdigit_l(_c, _p)
◆ iswgraph()
Definition at line 2319 of file wcs.c.
2320{
2322}
#define _iswgraph_l(_c, _p)
◆ iswlower()
Definition at line 2335 of file wcs.c.
2336{
2338}
#define _iswlower_l(_c, _p)
◆ iswprint()
Definition at line 2351 of file wcs.c.
2352{
2354}
#define _iswprint_l(_c, _p)
◆ iswpunct()
Definition at line 2367 of file wcs.c.
2368{
2370}
#define _iswpunct_l(_c, _p)
◆ iswspace()
Definition at line 2383 of file wcs.c.
2384{
2386}
#define _iswspace_l(_c, _p)
◆ iswupper()
Definition at line 2399 of file wcs.c.
2400{
2402}
#define _iswupper_l(_c, _p)
◆ iswxdigit()
Definition at line 2415 of file wcs.c.
2416{
2418}
#define _iswxdigit_l(_c, _p)
◆ towctrans()
Definition at line 149 of file wcs.c.
150{
154}
wint_t CDECL _towupper_l(wint_t c, _locale_t locale)
wint_t CDECL _towlower_l(wint_t c, _locale_t locale)
◆ towlower()
◆ towupper()
◆ wctrans()
Definition at line 38 of file wctrans.cpp.
39{
40 for (
unsigned n = 0;
tab[
n].s != 0; ++
n)
41 {
44 }
45
46 return 0;
47}
_ACRTIMP int __cdecl strcmp(const char *, const char *)
static struct wctab tab[]
◆ wctype()