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 _ismbbkalnum, _ismbbkalnum_l.
Determines whether a particular multibyte character is a non-ASCII text symbol.
Syntax
int _ismbbkalnum(
unsigned int c
);
int _ismbbkalnum_l(
unsigned int c,
_locale_t locale
);
Parameters
c
Integer to be tested.
locale
Locale to use.
Return Value
_ismbbkalnum returns a nonzero value if the integer c is a non-ASCII text symbol other than punctuation, or 0 if it is not. _ismbbkalnum uses the current locale for locale-dependent character information. _ismbbkalnum_l is identical to _ismbbkalnum except that it takes the locale as a parameter. For more information, see Locale.
Requirements
| Routine | Required header |
|---|---|
_ismbbkalnum |
<mbctype.h> |
_ismbbkalnum_l |
<mbctype.h> |
For more compatibility information, see Compatibility.
.NET Framework Equivalent
Not applicable. To call the standard C function, use PInvoke. For more information, see Platform Invoke Examples.