mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 14:25:52 +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
92
sdk/lib/ucrt/mbstring/ismbpunc.cpp
Normal file
92
sdk/lib/ucrt/mbstring/ismbpunc.cpp
Normal file
|
@ -0,0 +1,92 @@
|
|||
/***
|
||||
*ismbpunc - Test if character is punctuation (MBCS)
|
||||
*
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
*
|
||||
*Purpose:
|
||||
* Test if character is punctuation (MBCS)
|
||||
*
|
||||
*******************************************************************************/
|
||||
#ifndef _MBCS
|
||||
#error This file should only be compiled with _MBCS defined
|
||||
#endif
|
||||
|
||||
#include <corecrt_internal_mbstring.h>
|
||||
#include <locale.h>
|
||||
|
||||
|
||||
/***
|
||||
* _ismbcpunct - Test if character is punctuation (MBCS)
|
||||
*
|
||||
*Purpose:
|
||||
* Test if the supplied character is punctuation or not.
|
||||
* Handles MBCS characters correctly.
|
||||
*
|
||||
* Note: Use test against 0x00FF instead of _ISLEADBYTE
|
||||
* to ensure that we don't call SBCS routine with a two-byte
|
||||
* value.
|
||||
*
|
||||
*Entry:
|
||||
* unsigned int c = character to test
|
||||
*
|
||||
*Exit:
|
||||
* Returns TRUE if c is an punctuation character; else FALSE
|
||||
*
|
||||
*Exceptions:
|
||||
*
|
||||
*******************************************************************************/
|
||||
|
||||
extern "C" int __cdecl _ismbcpunct_l(unsigned int const c, _locale_t const locale)
|
||||
{
|
||||
_LocaleUpdate locale_update(locale);
|
||||
|
||||
if (c <= 0x00FF)
|
||||
{
|
||||
return _ismbbpunct_l(c, locale_update.GetLocaleT());
|
||||
}
|
||||
|
||||
return __dcrt_multibyte_check_type(c, locale_update.GetLocaleT(), _PUNCT, true);
|
||||
}
|
||||
|
||||
extern "C" int __cdecl _ismbcpunct(unsigned int const c)
|
||||
{
|
||||
return _ismbcpunct_l(c, nullptr);
|
||||
}
|
||||
|
||||
/***
|
||||
* _ismbcblank - Test if character is blank (MBCS)
|
||||
*
|
||||
*Purpose:
|
||||
* Test if the supplied character is blank or not.
|
||||
* Handles MBCS characters correctly.
|
||||
*
|
||||
* Note: Use test against 0x00FF instead of _ISLEADBYTE
|
||||
* to ensure that we don't call SBCS routine with a two-byte
|
||||
* value.
|
||||
*
|
||||
*Entry:
|
||||
* unsigned int c = character to test
|
||||
*
|
||||
*Exit:
|
||||
* Returns TRUE if c is a blank character; else FALSE
|
||||
*
|
||||
*Exceptions:
|
||||
*
|
||||
*******************************************************************************/
|
||||
|
||||
extern "C" int __cdecl _ismbcblank_l(unsigned int const c, _locale_t const locale)
|
||||
{
|
||||
_LocaleUpdate locale_update(locale);
|
||||
|
||||
if (c <= 0x00FF)
|
||||
{
|
||||
return _ismbbblank_l(c, locale_update.GetLocaleT());
|
||||
}
|
||||
|
||||
return __dcrt_multibyte_check_type(c, locale_update.GetLocaleT(), _BLANK, true);
|
||||
}
|
||||
|
||||
extern "C" int __cdecl _ismbcblank(unsigned int const c)
|
||||
{
|
||||
return _ismbcblank_l(c, nullptr);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue