Skip to content

Latest commit

 

History

History
64 lines (45 loc) · 1.85 KB

ismbbalpha-ismbbalpha-l.md

File metadata and controls

64 lines (45 loc) · 1.85 KB
description title ms.date api_name api_location api_type topic_type f1_keywords helpviewer_keywords ms.assetid
Learn more about: _ismbbalpha, _ismbbalpha_l
_ismbbalpha, _ismbbalpha_l
4/2/2020
_ismbbalpha
_ismbbalpha_l
_o__ismbbalpha
_o__ismbbalpha_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
ismbbalpha
ismbbalpha_l
_ismbbalpha
_ismbbalpha_l
ismbbalpha function
ismbbalpha_l function
_ismbbalpha function
_ismbbalpha_l function
8e54cb92-fc2b-41f5-8ab4-b22ac8aa9ad0

_ismbbalpha, _ismbbalpha_l

Determines whether a specified multibyte character is alpha.

Syntax

int _ismbbalpha(
   unsigned int c
);
int _ismbbalpha_l(
   unsigned int c
);

Parameters

c
Integer to be tested.

locale
Locale to use.

Return value

_ismbbalpha returns a nonzero value when the expression:

isalpha(c) || _ismbbkalnum(c)

is nonzero for c, or 0 when the expression is zero. _ismbbalpha uses the current locale for any locale-dependent character settings. _ismbbalpha_l is identical except that it uses the locale passed in.

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
_ismbbalpha <mbctype.h>
_ismbbalpha_l <mbctype.h>

For more compatibility information, see Compatibility.

Libraries

All versions of the C run-time libraries.

See also

Byte classification
_ismbb routines