description | title | ms.date | api_name | api_location | api_type | topic_type | ms.assetid | |||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Learn more about: _ismbbblank, _ismbbblank_l |
_ismbbblank, _ismbbblank_l |
4/2/2020 |
|
|
|
|
d21b2e41-7206-41f5-85bb-9c9ab4f3e21b |
Determines whether a specified multibyte character is a blank character.
Important
This API cannot be used in applications that execute in the Windows Runtime. For more information, see CRT functions not supported in Universal Windows Platform apps.
int _ismbbblank(
unsigned int c
);
int _ismbbblank_l(
unsigned int c,
_locale_t locale
);
c
Integer to be tested.
locale
Locale to use.
_ismbbblank
returns a nonzero value if c
represents a space (0x20) character, a horizontal tab (0x09) character, or a locale-specific character that's used to separate words within a line of text for which isspace
is true; otherwise, returns 0. _ismbbblank
uses the current locale for any locale-dependent behavior. _ismbbblank_l
is identical except that it instead 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 |
---|---|
_ismbbblank |
<mbctype.h> |
_ismbbblank_l |
<mbctype.h> |
For more compatibility information, see Compatibility.