#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 33 of file is_wctype.cpp.
37{
39}
int __cdecl 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 2260 of file wcs.c.
2261{
2263}
#define _iswalnum_l(_c, _p)
◆ iswalpha()
Definition at line 2276 of file wcs.c.
2277{
2279}
#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 2292 of file wcs.c.
2293{
2295}
#define _iswcntrl_l(_c, _p)
◆ iswctype()
◆ iswdigit()
Definition at line 2308 of file wcs.c.
2309{
2311}
#define _iswdigit_l(_c, _p)
◆ iswgraph()
Definition at line 2324 of file wcs.c.
2325{
2327}
#define _iswgraph_l(_c, _p)
◆ iswlower()
Definition at line 2340 of file wcs.c.
2341{
2343}
#define _iswlower_l(_c, _p)
◆ iswprint()
Definition at line 2356 of file wcs.c.
2357{
2359}
#define _iswprint_l(_c, _p)
◆ iswpunct()
Definition at line 2372 of file wcs.c.
2373{
2375}
#define _iswpunct_l(_c, _p)
◆ iswspace()
Definition at line 2388 of file wcs.c.
2389{
2391}
#define _iswspace_l(_c, _p)
◆ iswupper()
Definition at line 2404 of file wcs.c.
2405{
2407}
#define _iswupper_l(_c, _p)
◆ iswxdigit()
Definition at line 2420 of file wcs.c.
2421{
2423}
#define _iswxdigit_l(_c, _p)
◆ towctrans()
Definition at line 154 of file wcs.c.
155{
159}
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()