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 specified multibyte character is a print 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 _ismbbprint(
unsigned int c
);
int _ismbbprint_l(
unsigned int c,
_locale_t locale
);
Parameters
c
Integer to be tested.locale
Locale to use.
Return Value
_ismbbprint returns a nonzero value if the expression:
isprint || _ismbbkprint
is nonzero for c, or 0 if it is not. _ismbbprint uses the current locale for any locale-dependent behavior. _ismbbprint_l is identical except that it uses the locale passed in instead. For more information, see Locale.
Requirements
Routine |
Required header |
|---|---|
_ismbbprint |
<mbctype.h> |
_ismbbprint_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.