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 _ismbbtrail, _ismbbtrail_l.
Determines whether a byte is a trailing byte of a multibyte character.
Syntax
int _ismbbtrail(
unsigned int c
);
int _ismbbtrail_l(
unsigned int c,
_locale_t locale
);
Parameters
c
The integer to be tested.
locale
The locale to use.
Return Value
_ismbbtrail
returns a nonzero value if the integer c
is the second byte of a multibyte character. For example, in code page 932 only, valid ranges are 0x40 to 0x7E and 0x80 to 0xFC.
Remarks
_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.
Requirements
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.
.NET Framework Equivalent
Not applicable. To call the standard C function, use PInvoke
. For more information, see Platform Invoke Examples.