_ismbbtrail, _ismbbtrail_l
Determines whether a byte is a trailing byte of a multibyte character.
Important
|
|---|
|
This API cannot be used in applications that execute in the Windows Runtime. For more information, see CRT functions not supported with /ZW. |
int _ismbbtrail( unsigned int c ); int _ismbbtrail_l( unsigned int c, _locale_t locale );
_ismbbtrail uses the current locale for locale-dependent behavior. _ismbbtrail_l is identical except that it uses the locale that's passed in instead. For more information, see Locale.
|
Routine |
Required header |
Optional header |
|---|---|---|
|
_ismbbtrail |
<mbctype.h> or <mbstring.h> |
<ctype.h>,* <limits.h>, <stdlib.h> |
|
_ismbbtrail_l |
<mbctype.h> or <mbstring.h> |
<ctype.h>,* <limits.h>, <stdlib.h> |
* For manifest constants for the test conditions.
For more compatibility information, see Compatibility.
Not applicable. To call the standard C function, use PInvoke. For more information, see Platform Invoke Examples.
Important