Go to the source code of this file.
|
| _ACRTIMP const unsigned short *__cdecl | __pctype_func (void) |
| |
| _ACRTIMP int __cdecl | _isleadbyte_l (int, _locale_t) |
| |
| _ACRTIMP int __cdecl | _iswalnum_l (wint_t, _locale_t) |
| |
| _ACRTIMP int __cdecl | _iswalpha_l (wint_t, _locale_t) |
| |
| _ACRTIMP int __cdecl | _iswblank_l (wint_t, _locale_t) |
| |
| _ACRTIMP int __cdecl | _iswcntrl_l (wint_t, _locale_t) |
| |
| _ACRTIMP int __cdecl | _iswctype_l (wint_t, wctype_t, _locale_t) |
| |
| _ACRTIMP int __cdecl | _iswdigit_l (wint_t, _locale_t) |
| |
| _ACRTIMP int __cdecl | _iswgraph_l (wint_t, _locale_t) |
| |
| _ACRTIMP int __cdecl | _iswlower_l (wint_t, _locale_t) |
| |
| _ACRTIMP int __cdecl | _iswprint_l (wint_t, _locale_t) |
| |
| _ACRTIMP int __cdecl | _iswpunct_l (wint_t, _locale_t) |
| |
| _ACRTIMP int __cdecl | _iswspace_l (wint_t, _locale_t) |
| |
| _ACRTIMP int __cdecl | _iswupper_l (wint_t, _locale_t) |
| |
| _ACRTIMP int __cdecl | _iswxdigit_l (wint_t, _locale_t) |
| |
| _ACRTIMP wint_t __cdecl | _towlower_l (wint_t, _locale_t) |
| |
| _ACRTIMP wint_t __cdecl | _towupper_l (wint_t, _locale_t) |
| |
| _ACRTIMP int __cdecl | is_wctype (wint_t, wctype_t) |
| |
| _ACRTIMP int __cdecl | isleadbyte (int) |
| |
| _ACRTIMP int __cdecl | iswalnum (wint_t) |
| |
| _ACRTIMP int __cdecl | iswalpha (wint_t) |
| |
| _ACRTIMP int __cdecl | iswascii (wint_t) |
| |
| _ACRTIMP int __cdecl | iswblank (wint_t) |
| |
| _ACRTIMP int __cdecl | iswcntrl (wint_t) |
| |
| _ACRTIMP int __cdecl | iswctype (wint_t, wctype_t) |
| |
| _ACRTIMP int __cdecl | iswdigit (wint_t) |
| |
| _ACRTIMP int __cdecl | iswgraph (wint_t) |
| |
| _ACRTIMP int __cdecl | iswlower (wint_t) |
| |
| _ACRTIMP int __cdecl | iswprint (wint_t) |
| |
| _ACRTIMP int __cdecl | iswpunct (wint_t) |
| |
| _ACRTIMP int __cdecl | iswspace (wint_t) |
| |
| _ACRTIMP int __cdecl | iswupper (wint_t) |
| |
| _ACRTIMP int __cdecl | iswxdigit (wint_t) |
| |
| _ACRTIMP wint_t __cdecl | towlower (wint_t) |
| |
| _ACRTIMP wint_t __cdecl | towupper (wint_t) |
| |
◆ _ALPHA
◆ _BLANK
◆ _CONTROL
◆ _DIGIT
◆ _HEX
◆ _LEADBYTE
◆ _LOWER
◆ _PUNCT
◆ _SPACE
◆ _UPPER
This file has no copyright assigned and is placed in the Public Domain. This file is part of the Wine project.
Definition at line 16 of file corecrt_wctype.h.
◆ __pctype_func()
◆ _isleadbyte_l()
Definition at line 286 of file ctype.c.
287{
289}
int CDECL _isctype_l(int c, int type, _locale_t locale)
◆ _iswalnum_l()
Definition at line 2247 of file wcs.c.
2248{
2250}
INT CDECL _iswctype_l(wchar_t wc, wctype_t type, _locale_t locale)
◆ _iswalpha_l()
◆ _iswblank_l()
◆ _iswcntrl_l()
◆ _iswctype_l()
Definition at line 2221 of file wcs.c.
2222{
2224
2225 if (wc ==
WEOF)
return 0;
2227
2229 {
2230 ERR(
"GetStringTypeW failed for %x\n", wc);
2231 return 0;
2232 }
2234}
BOOL WINAPI GetStringTypeW(DWORD type, LPCWSTR src, INT count, LPWORD chartype)
GLuint GLuint GLsizei GLenum type
Referenced by _iswalnum_l(), _iswalpha_l(), _iswblank_l(), _iswcntrl_l(), _iswdigit_l(), _iswgraph_l(), _iswlower_l(), _iswprint_l(), _iswpunct_l(), _iswspace_l(), _iswupper_l(), _iswxdigit_l(), iswblank(), iswctype(), and test_isblank().
◆ _iswdigit_l()
◆ _iswgraph_l()
◆ _iswlower_l()
◆ _iswprint_l()
◆ _iswpunct_l()
◆ _iswspace_l()
◆ _iswupper_l()
◆ _iswxdigit_l()
◆ _towlower_l()
Definition at line 96 of file wcs.c.
97{
100
103 else
105
107 if(
c >=
'A' &&
c <=
'Z')
108 return c +
'a' -
'A';
110 }
111
115}
INT WINAPI LCMapStringW(LCID lcid, DWORD flags, LPCWSTR src, INT srclen, LPWSTR dst, INT dstlen)
Referenced by _towlower_internal(), _wcsicmp_l(), _wcslwr_s_l(), _wcsnicmp_l(), test_C_locale(), test_SpecialCasing(), towctrans(), and towlower().
◆ _towupper_l()
◆ 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 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}
◆ iswblank()
◆ 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)
◆ towlower()
Definition at line 120 of file wcs.c.
121{
123}
wint_t CDECL _towlower_l(wint_t c, _locale_t locale)
◆ towupper()
Definition at line 2956 of file wcs.c.
2957{
2959}
wint_t CDECL _towupper_l(wint_t c, _locale_t locale)