Skip to content

Latest commit

 

History

History
57 lines (42 loc) · 1.93 KB

ismbbkpunct-ismbbkpunct-l.md

File metadata and controls

57 lines (42 loc) · 1.93 KB
description title ms.date api_name api_location api_type topic_type f1_keywords helpviewer_keywords ms.assetid
Learn more about: _ismbbkpunct, _ismbbkpunct_l
_ismbbkpunct, _ismbbkpunct_l
4/2/2020
_ismbbkpunct_l
_ismbbkpunct
_o__ismbbkpunct
_o__ismbbkpunct_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
ismbbkpunct_l
_ismbbkpunct_l
ismbbkpunct
_ismbbkpunct
_ismbbkpunct_l function
ismbbkpunct_l function
ismbbkpunct function
_ismbbkpunct function
a04c59cd-5ca7-4296-bec0-2b0d7f04edd0

_ismbbkpunct, _ismbbkpunct_l

Checks whether a multibyte character is a punctuation character.

Syntax

int _ismbbkpunct(
   unsigned int c
);
int _ismbbkpunct_l(
   unsigned int c,
   _locale_t locale
);

Parameters

c
Integer to be tested.

locale
Locale to use.

Return value

_ismbbkpunct returns a nonzero value if the integer c is a non-ASCII punctuation symbol. Otherwise, it returns 0. For example, in code page 932 only, _ismbbkpunct tests for katakana punctuation. _ismbbkpunct uses the current locale for any locale-dependent character settings. _ismbbkpunct_l is identical except that it 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
_ismbbkpunct <mbctype.h>
_ismbbkpunct_l <mbctype.h>

For more compatibility information, see Compatibility.

See also

Byte classification
_ismbb routines