Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at _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 if the expression:
isalpha || _ismbbkalnum
is nonzero for c
, or 0 if it is not. _ismbbalpha
uses the current locale for any locale-dependent character settings. _ismbbalpha_l
is identical except that it uses the locale passed in.
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.
.NET Framework Equivalent
Not applicable. To call the standard C function, use PInvoke
. For more information, see Platform Invoke Examples.