41 lines
963 B
C
41 lines
963 B
C
#include <stdio.h>
|
|
#include <wchar.h>
|
|
#include <mbctype.h>
|
|
#include <errno.h>
|
|
|
|
const wchar_t wc[] = {
|
|
0x0020,
|
|
0x002e,
|
|
0x0031,
|
|
0x0041,
|
|
0x3000, /* double-byte space */
|
|
0xff21, /* double-byte A */
|
|
0x3048, /* double-byte Hiragana */
|
|
0x30a3, /* double-byte Katakana */
|
|
0xff61, /* single-byte Katakana punctuation */
|
|
0xff66, /* single-byte Katakana alphabetic */
|
|
0xff9f, /* single-byte Katakana alphabetic */
|
|
0x720d, /* double-byte Kanji */
|
|
0x0000
|
|
};
|
|
|
|
void main()
|
|
{
|
|
int i;
|
|
size_t elements;
|
|
const wchar_t *src;
|
|
char mb[50];
|
|
mbstate_t pstate;
|
|
|
|
_setmbcp( 932 );
|
|
src = wc;
|
|
elements = wcsrtombs( mb, &src, 50, &pstate );
|
|
if( errno == EILSEQ ) {
|
|
printf( "Error in wide character string\n" );
|
|
} else {
|
|
for( i = 0; i < elements; i++ ) {
|
|
printf( "0x%2.2x\n", mb[i] );
|
|
}
|
|
}
|
|
}
|