Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Determines whether a particular character is a punctuation character.
Important
This API cannot be used in applications that execute in the Windows Runtime. For more information, see CRT functions not supported with /ZW.
int _ismbbpunct(
unsigned int c
);
int _ismbbpunct_l(
unsigned int c,
_locale_t locale
);
Parameters
c
Integer to be tested.locale
Locale to use.
Return Value
_ismbbpunct returns a nonzero value if the integer c is a non-ASCII punctuation symbol. _ismbbpunct uses the current locale for any locale-dependent character settings. _ismbbpunct_l is identical except that it uses the locale that's passed in. For more information, see Locale.
Requirements
Routine |
Required header |
|---|---|
_ismbbpunct |
<mbctype.h> |
_ismbbpunct_l |
<mbctype.h> |
For more compatibility information, see Compatibility.
.NET Framework Equivalent
Not applicable. To call the standard C function, use PInvoke. For more information, see Platform Invoke Examples.