Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at _ismbbblank, _ismbbblank_l.
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 with /ZW.
Syntax
int _ismbbblank(
unsigned int c
);
int _ismbbblank_l(
unsigned int c,
_locale_t locale
);
Parameters
c
Integer to be tested.
locale
Locale to use.
Return Value
_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.
Requirements
Routine | Required header |
---|---|
_ismbbblank |
<mbctype.h> |
_ismbbblank_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.