_ismbbkana, _ismbbkana_l
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 _ismbbkana, _ismbbkana_l.
Tests for a katakana symbol and is specific to code page 932.
Syntax
int _ismbbkana(
unsigned int c
);
int _ismbbkana_l(
unsigned int c,
_locale_t locale
);
Parameters
c
Integer to be tested.
locale
Locale to use.
Return Value
_ismbbkana
returns a nonzero value if the integer c
is a katakana symbol or 0 if it is not. _ismbbkana
uses the current locale for locale-dependent character information. _ismbbkana_l
is identical except that it uses the locale object passed in. For more information, see Locale.
Requirements
Routine | Required header |
---|---|
_ismbbkana |
<mbctype.h> |
_ismbbkana_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.