description | title | ms.date | api_name | api_location | api_type | topic_type | f1_keywords | helpviewer_keywords | ms.assetid | |||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Learn more about: _ismbbkpunct, _ismbbkpunct_l |
_ismbbkpunct, _ismbbkpunct_l |
4/2/2020 |
|
|
|
|
|
|
a04c59cd-5ca7-4296-bec0-2b0d7f04edd0 |
Checks whether a multibyte character is a punctuation character.
int _ismbbkpunct(
unsigned int c
);
int _ismbbkpunct_l(
unsigned int c,
_locale_t locale
);
c
Integer to be tested.
locale
Locale to use.
_ismbbkpunct
returns a nonzero value if the integer c
is a non-ASCII punctuation symbol. Otherwise, it returns 0. For example, in code page 932 only, _ismbbkpunct
tests for katakana punctuation. _ismbbkpunct
uses the current locale for any locale-dependent character settings. _ismbbkpunct_l
is identical except that it uses the locale that's passed in. For more information, see Locale.
By default, this function's global state is scoped to the application. To change this behavior, see Global state in the CRT.
Routine | Required header |
---|---|
_ismbbkpunct |
<mbctype.h> |
_ismbbkpunct_l |
<mbctype.h> |
For more compatibility information, see Compatibility.