Code Page 932 Specific functions.
int _ismbchira(
   unsigned int c 
);
int _ismbchira_l(
   unsigned int c,
   _locale_t locale
);
int _ismbckata(
   unsigned int c 
);
int _ismbckata_l(
   unsigned int c,
   _locale_t locale
);
Parameters
- c 
 Character to be tested.
- locale 
 Locale to use.
Return Value
Each of these routines returns a nonzero value if the character satisfies the test condition or 0 if it does not. If c <= 255 and there is a corresponding _ismbb routine (for example, _ismbcalnum corresponds to _ismbbalnum), the result is the return value of the corresponding _ismbb routine.
Remarks
Each of these functions tests a given multibyte character for a given condition.
The versions of these functions with the _l suffix are identical except that they use the locale passed in instead of the current locale for their locale-dependent behavior. For more information, see Locale.
| Routine | Test condition (code page 932 only) | 
|---|---|
| _ismbchira | Double-byte Hiragana: 0x829F<=c<=0x82F1. | 
| _ismbchira_l | Double-byte Hiragana: 0x829F<=c<=0x82F1. | 
| _ismbckata | Double-byte katakana: 0x8340<=c<=0x8396. | 
| _ismbckata_l | Double-byte katakana: 0x8340<=c<=0x8396. | 
End Code Page 932 Specific
Requirements
| Routine | Required header | 
|---|---|
| _ismbchira | <mbstring.h> | 
| _ismbchira_l | <mbstring.h> | 
| _ismbckata | <mbstring.h> | 
| _ismbckata_l | <mbstring.h> | 
For more compatibility information, see Compatibility in the Introduction.
.NET Framework Equivalent
Not applicable. To call the standard C function, use PInvoke. For more information, see Platform Invoke Examples.