Skip to content

Latest commit

 

History

History
57 lines (42 loc) · 1.99 KB

ismbbkprint-ismbbkprint-l.md

File metadata and controls

57 lines (42 loc) · 1.99 KB
description title ms.date api_name api_location api_type topic_type f1_keywords helpviewer_keywords ms.assetid
Learn more about: _ismbbkprint, _ismbbkprint_l
_ismbbkprint, _ismbbkprint_l
4/2/2020
_ismbbkprint
_ismbbkprint_l
_o__ismbbkprint
_o__ismbbkprint_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
_ismbbkprint_l
ismbbkprint
_ismbbkprint
ismbbkprint_l
_ismbbkprint function
ismbbkprint_l function
ismbbkprint function
_ismbbkprint_l function
8d1d3258-1e34-4365-81ed-97c95de25475

_ismbbkprint, _ismbbkprint_l

Determines whether a particular multibyte character is a punctuation symbol.

Syntax

int _ismbbkprint(
   unsigned int c
);
int _ismbbkprint_l(
   unsigned int c,
   _locale_t locale
);

Parameters

c
Integer to be tested.

locale
Locale to use.

Return value

_ismbbkprint returns a nonzero value if the integer c is a non-ASCII text or non-ASCII punctuation symbol. Otherwise, it returns 0. For example, in code page 932 only, _ismbbkprint tests for katakana alphanumeric or katakana punctuation (range: 0xA1 - 0xDF). _ismbbkprint uses the current locale for locale-dependent character settings. _ismbbkprint_l is identical except that it uses the locale 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
_ismbbkprint <mbctype.h>
_ismbbkprint_l <mbctype.h>

For more compatibility information, see Compatibility.

See also

Byte classification
_ismbb routines