Skip to content

Latest commit

 

History

History
66 lines (46 loc) · 1.87 KB

ismbbalnum-ismbbalnum-l.md

File metadata and controls

66 lines (46 loc) · 1.87 KB
description title ms.date api_name api_location api_type topic_type f1_keywords helpviewer_keywords ms.assetid
Learn more about: _ismbbalnum, _ismbbalnum_l
_ismbbalnum, _ismbbalnum_l
4/2/2020
_ismbbalnum
_ismbbalnum_l
_o__ismbbalnum
_o__ismbbalnum_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
_ismbbalnum
ismbbalnum
_ismbbalnum_l
ismbbalnum_l
_ismbbalnum_l function
ismbbalnum function
ismbbalnum_l function
_ismbbalnum function
8025de50-a871-49fd-9ae6-f437b47aa987

_ismbbalnum, _ismbbalnum_l

Determines whether a specified multibyte character is alpha or numeric.

Syntax

int _ismbbalnum(
   unsigned int c
);
int _ismbbalnum_l(
   unsigned int c
);

Parameters

c
Integer to be tested.

locale
Locale to use.

Return value

_ismbbalnum returns a nonzero value when the expression:

isalnum(c) || _ismbbkalnum(c)

is nonzero for c, or 0 when the expression is zero.

The version of this function with the _l suffix is identical except that it uses the locale passed in instead of the current locale for its locale-dependent behavior.

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
_ismbbalnum <mbctype.h>
_ismbbalnum_l <mbctype.h>

For more compatibility information, see Compatibility.

Libraries

All versions of the C run-time libraries.

See also

Byte classification
_ismbb routines