Skip to content

Latest commit

 

History

History
61 lines (44 loc) · 1.83 KB

ismbbprint-ismbbprint-l.md

File metadata and controls

61 lines (44 loc) · 1.83 KB
description title ms.date api_name api_location api_type topic_type f1_keywords helpviewer_keywords ms.assetid
Learn more about: _ismbbprint, _ismbbprint_l
_ismbbprint, _ismbbprint_l
4/2/2020
_ismbbprint_l
_ismbbprint
_o__ismbbprint
_o__ismbbprint_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
_ismbbprint_l
_ismbbprint
ismbbprint
ismbbprint_l
ismbbprint_l function
ismbbprint function
_ismbbprint function
_ismbbprint_l function
d08a061c-18a8-48f2-a75d-bff4870aec9d

_ismbbprint, _ismbbprint_l

Determines whether a specified multibyte character is a print character.

Syntax

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 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.

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
_ismbbprint <mbctype.h>
_ismbbprint_l <mbctype.h>

For more compatibility information, see Compatibility.

See also

Byte classification
_ismbb routines