| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Program Files (x86)/Windows Kits/10/Source/10.0.19041.0/ucrt/misc/ |
Upload File : |
/***
*iswctype.c - support isw* wctype functions/macros for wide characters
*
* Copyright (c) Microsoft Corporation. All rights reserved.
*
*Purpose:
* Defines iswctype - support isw* wctype functions/macros for
* wide characters (esp. > 255).
*
*******************************************************************************/
#include <corecrt_internal.h>
#include <ctype.h>
/***
*is_wctype - support obsolete name
*
*Purpose:
* Name changed from is_wctype to iswctype. is_wctype must be supported.
*
*Entry:
* wchar_t c - the wide character whose type is to be tested
* wchar_t mask - the mask used by the isw* functions/macros
* corresponding to each character class property
*
*Exit:
* Returns non-zero if c is of the character class.
* Returns 0 if c is not of the character class.
*
*Exceptions:
* Returns 0 on any error.
*
*******************************************************************************/
extern "C" int __cdecl is_wctype (
wint_t c,
wctype_t mask
)
{
return iswctype(c, mask);
}