34 lines
712 B
C
34 lines
712 B
C
|
#include <stdio.h>
|
||
|
#include <mbctype.h>
|
||
|
#include <mbstring.h>
|
||
|
|
||
|
unsigned int chars[] = {
|
||
|
'1',
|
||
|
'A',
|
||
|
'a',
|
||
|
0x8140, /* double-byte space */
|
||
|
0x8143, /* double-byte , */
|
||
|
0x8254, /* double-byte 5 */
|
||
|
0x8260, /* double-byte A */
|
||
|
0x8279, /* double-byte Z */
|
||
|
0x8281, /* double-byte a */
|
||
|
0x829A, /* double-byte z */
|
||
|
0x989F, /* double-byte L2 character */
|
||
|
0xA6
|
||
|
};
|
||
|
|
||
|
#define SIZE sizeof( chars ) / sizeof( unsigned int )
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
int i;
|
||
|
|
||
|
_setmbcp( 932 );
|
||
|
for( i = 0; i < SIZE; i++ ) {
|
||
|
printf( "%#6.4x is %sa valid "
|
||
|
"multibyte uppercase character\n",
|
||
|
chars[i],
|
||
|
( _ismbcupper( chars[i] ) ) ? "" : "not " );
|
||
|
}
|
||
|
}
|