| 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/mbstring/ |
Upload File : |
/***
*ismbcknj.c - contains the Kanji specific is* functions.
*
* Copyright (c) Microsoft Corporation. All rights reserved.
*
*Purpose:
* Provide non-portable Kanji support for MBCS libs.
*
*******************************************************************************/
#ifndef _MBCS
#error This file should only be compiled with _MBCS defined
#endif
#include <corecrt_internal_mbstring.h>
#include <locale.h>
/***
*int _ismbchira(c) - test character for hiragana (Japanese)
*
*Purpose:
* Test if the character c is a hiragana character.
*
*Entry:
* unsigned int c - character to test
*
*Exit:
* returns TRUE if CP == KANJI and character is hiragana, else FALSE
*
*Exceptions:
*
*******************************************************************************/
extern "C" int __cdecl _ismbchira_l(
unsigned int c,
_locale_t plocinfo
)
{
_LocaleUpdate _loc_update(plocinfo);
return(_loc_update.GetLocaleT()->mbcinfo->mbcodepage == _KANJI_CP && c >= 0x829f && c <= 0x82f1);
}
extern "C" int __cdecl _ismbchira(
unsigned int c
)
{
return _ismbchira_l(c, nullptr);
}
/***
*int _ismbckata(c) - test character for katakana (Japanese)
*
*Purpose:
* Tests to see if the character c is a katakana character.
*
*Entry:
* unsigned int c - character to test
*
*Exit:
* Returns TRUE if CP == KANJI and c is a katakana character, else FALSE.
*
*Exceptions:
*
*******************************************************************************/
extern "C" int __cdecl _ismbckata_l (
unsigned int c,
_locale_t plocinfo
)
{
_LocaleUpdate _loc_update(plocinfo);
return(_loc_update.GetLocaleT()->mbcinfo->mbcodepage == _KANJI_CP && c >= 0x8340 && c <= 0x8396 && c != 0x837f);
}
extern "C" int __cdecl _ismbckata(
unsigned int c
)
{
return _ismbckata_l(c, nullptr);
}
/***
*int _ismbcsymbol(c) - Tests if char is punctuation or symbol of Microsoft Kanji
* code.
*
*Purpose:
* Returns non-zero if the character is kanji punctuation.
*
*Entry:
* unsigned int c - character to be tested
*
*Exit:
* Returns non-zero if CP == KANJI and the specified char is punctuation or symbol of
* Microsoft Kanji code, else 0.
*
*Exceptions:
*
*******************************************************************************/
extern "C" int __cdecl _ismbcsymbol_l(
unsigned int c,
_locale_t plocinfo
)
{
_LocaleUpdate _loc_update(plocinfo);
return(_loc_update.GetLocaleT()->mbcinfo->mbcodepage == _KANJI_CP && c >= 0x8141 && c <= 0x81ac && c != 0x817f);
}
extern "C" int (__cdecl _ismbcsymbol)(
unsigned int c
)
{
return _ismbcsymbol_l(c, nullptr);
}