Skip to content

Latest commit

 

History

History
65 lines (46 loc) · 1.95 KB

ismbbgraph-ismbbgraph-l.md

File metadata and controls

65 lines (46 loc) · 1.95 KB
description title ms.date api_name api_location api_type topic_type f1_keywords helpviewer_keywords ms.assetid
Learn more about: _ismbbgraph, _ismbbgraph_l
_ismbbgraph, _ismbbgraph_l
4/2/2020
_ismbbgraph_l
_ismbbgraph
_o__ismbbgraph
_o__ismbbgraph_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
_ismbbgraph
_ismbbgraph_l
ismbbgraph
ismbbgraph_l
_ismbbgraph_l function
ismbbgraph_l function
_ismbbgraph function
ismbbgraph function
b60db718-134f-4796-acc1-592d0b9efbb7

_ismbbgraph, _ismbbgraph_l

Determines whether a particular multibyte character is a graphical character.

Syntax

int _ismbbgraph (
   unsigned int c
);
int _ismbbgraph_l (
   unsigned int c,
   _locale_t locale
);

Parameters

c
Integer to be tested.

locale
Locale to use.

Return value

Returns a nonzero value when the expression:

isctype(c, ( _PUNCT | _UPPER | _LOWER | _DIGIT )) || _ismbbkprint(c)

is nonzero for c, or 0 when it's zero. _ismbbgraph uses the current locale for any locale-dependent behavior. _ismbbgraph_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
_ismbbgraph <mbctype.h>
_ismbbgraph_l <mbctype.h>

For more compatibility information, see Compatibility.

Libraries

All versions of the C run-time libraries.

See also

Byte classification
_ismbb routines