Skip to content

Latest commit

 

History

History
58 lines (42 loc) · 2.02 KB

ismbbblank-ismbbblank-l.md

File metadata and controls

58 lines (42 loc) · 2.02 KB
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
_ismbbblank_l
_ismbbblank
_o__ismbbblank
_o__ismbbblank_l
msvcrt.dll
msvcr80.dll
msvcr90.dll
msvcr100.dll
msvcr100_clr0400.dll
msvcr110.dll
msvcr110_clr0400.dll
msvcr120.dll
msvcr120_clr0400.dll
ucrtbase.dll
api-ms-win-crt-multibyte-l1-1-0.dll
DLLExport
apiref
d21b2e41-7206-41f5-85bb-9c9ab4f3e21b

_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 in Universal Windows Platform apps.

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.

Remarks

By default, this function's global state is scoped to the application. To change this behavior, see Global state in the CRT.

Requirements

Routine Required header
_ismbbblank <mbctype.h>
_ismbbblank_l <mbctype.h>

For more compatibility information, see Compatibility.

See also

Byte classification
_ismbb routines