Anteckning
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Checks whether a multibyte character is a punctuation character.
Syntax
int _ismbbkpunct(
unsigned int c
);
int _ismbbkpunct_l(
unsigned int c,
_locale_t locale
);
Parameters
c
Integer to be tested.
locale
Locale to use.
Return value
_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.
Remarks
By default, this function's global state is scoped to the application. To change this behavior, see Global state in the CRT.
Requirements
| Routine | Required header |
|---|---|
_ismbbkpunct |
<mbctype.h> |
_ismbbkpunct_l |
<mbctype.h> |
For more compatibility information, see Compatibility.