mirror of
https://github.com/reactos/reactos.git
synced 2025-06-25 20:29:43 +00:00
[UCRT] Import Microsoft.Windows.SDK.CRTSource version 10.0.22621.3
Imported from https://www.nuget.org/packages/Microsoft.Windows.SDK.CRTSource/10.0.22621.3 License: MIT
This commit is contained in:
parent
f1b60c66f0
commit
04e0dc4a7a
568 changed files with 115483 additions and 0 deletions
127
sdk/lib/ucrt/mbstring/mbclevel.cpp
Normal file
127
sdk/lib/ucrt/mbstring/mbclevel.cpp
Normal file
|
@ -0,0 +1,127 @@
|
|||
/***
|
||||
*mbclevel.c - Tests if char is hiragana, katakana, alphabet or digit.
|
||||
*
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
*
|
||||
*Purpose:
|
||||
* Tests for the various industry defined levels of Microsoft Kanji
|
||||
* Code.
|
||||
*
|
||||
*******************************************************************************/
|
||||
#ifndef _MBCS
|
||||
#error This file should only be compiled with _MBCS defined
|
||||
#endif
|
||||
|
||||
#include <corecrt_internal_mbstring.h>
|
||||
#include <locale.h>
|
||||
|
||||
|
||||
/***
|
||||
*int _ismbcl0(c) - Tests if char is hiragana, katakana, alphabet or digit.
|
||||
*
|
||||
*Purpose:
|
||||
* Tests if a given char is hiragana, katakana, alphabet, digit or symbol
|
||||
* of Microsoft Kanji code.
|
||||
*
|
||||
*Entry:
|
||||
* unsigned int c - Character to test.
|
||||
*
|
||||
*Exit:
|
||||
* Returns non-zero if 0x8140 <= c <= 0x889E, else 0.
|
||||
*
|
||||
*Exceptions:
|
||||
*
|
||||
*******************************************************************************/
|
||||
|
||||
extern "C" int __cdecl _ismbcl0_l(
|
||||
unsigned int c,
|
||||
_locale_t plocinfo
|
||||
)
|
||||
{
|
||||
_LocaleUpdate _loc_update(plocinfo);
|
||||
|
||||
return( (_loc_update.GetLocaleT()->mbcinfo->mbcodepage == _KANJI_CP) &&
|
||||
(_ismbblead_l(c >> 8, _loc_update.GetLocaleT())) &&
|
||||
(_ismbbtrail_l(c & 0x0ff, _loc_update.GetLocaleT())) &&
|
||||
(c < 0x889f) );
|
||||
}
|
||||
|
||||
extern "C" int (__cdecl _ismbcl0)(
|
||||
unsigned int c
|
||||
)
|
||||
{
|
||||
return _ismbcl0_l(c, nullptr);
|
||||
}
|
||||
|
||||
|
||||
/***
|
||||
*int _ismbcl1(c) - Tests for 1st-level Microsoft Kanji code set.
|
||||
*
|
||||
*Purpose:
|
||||
* Tests if a given char belongs to Microsoft 1st-level Kanji code set.
|
||||
*
|
||||
*Entry:
|
||||
* unsigned int c - character to test.
|
||||
*
|
||||
*Exit:
|
||||
* Returns non-zero if 1st-level, else 0.
|
||||
*
|
||||
*Exceptions:
|
||||
*
|
||||
*******************************************************************************/
|
||||
|
||||
extern "C" int __cdecl _ismbcl1_l(
|
||||
unsigned int c,
|
||||
_locale_t plocinfo
|
||||
)
|
||||
{
|
||||
_LocaleUpdate _loc_update(plocinfo);
|
||||
|
||||
return( (_loc_update.GetLocaleT()->mbcinfo->mbcodepage == _KANJI_CP) &&
|
||||
(_ismbblead_l(c >> 8, _loc_update.GetLocaleT())) &&
|
||||
(_ismbbtrail_l(c & 0x0ff, _loc_update.GetLocaleT())) &&
|
||||
(c >= 0x889f) && (c <= 0x9872) );
|
||||
}
|
||||
|
||||
extern "C" int (__cdecl _ismbcl1)(
|
||||
unsigned int c
|
||||
)
|
||||
{
|
||||
return _ismbcl1_l(c, nullptr);
|
||||
}
|
||||
|
||||
|
||||
/***
|
||||
*int _ismbcl2(c) - Tests for a 2nd-level Microsoft Kanji code character.
|
||||
*
|
||||
*Purpose:
|
||||
* Tests if a given char belongs to the Microsoft 2nd-level Kanji code set.
|
||||
*
|
||||
*Entry:
|
||||
* unsigned int c - character to test.
|
||||
*
|
||||
*Exit:
|
||||
* Returns non-zero if 2nd-level, else 0.
|
||||
*
|
||||
*Exceptions:
|
||||
*
|
||||
*******************************************************************************/
|
||||
|
||||
extern "C" int __cdecl _ismbcl2_l(
|
||||
unsigned int c,
|
||||
_locale_t plocinfo
|
||||
)
|
||||
{
|
||||
_LocaleUpdate _loc_update(plocinfo);
|
||||
|
||||
return( (_loc_update.GetLocaleT()->mbcinfo->mbcodepage == _KANJI_CP) &&
|
||||
(_ismbblead_l(c >> 8, _loc_update.GetLocaleT())) &&
|
||||
(_ismbbtrail_l(c & 0x0ff, _loc_update.GetLocaleT())) &&
|
||||
(c >= 0x989f) && (c <= 0xEAA4) );
|
||||
}
|
||||
extern "C" int __cdecl _ismbcl2(
|
||||
unsigned int c
|
||||
)
|
||||
{
|
||||
return _ismbcl2_l(c, nullptr);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue