_ismbbprint
, _ismbbprint_l
Determines whether a specified multibyte character is a print character.
int _ismbbprint(
unsigned int c
);
int _ismbbprint_l(
unsigned int c,
_locale_t locale
);
c
Integer to be tested.
locale
Locale to use.
_ismbbprint
returns a nonzero value when the expression:
isprint(c) || _ismbbkprint(c)
is nonzero for c
, or 0 when it isn't. _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.
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 |
---|---|
_ismbbprint |
<mbctype.h> |
_ismbbprint_l |
<mbctype.h> |
For more compatibility information, see Compatibility.