13 lines
188 B
C
13 lines
188 B
C
|
#include <stdio.h>
|
||
|
#include <mbctype.h>
|
||
|
#include <mbstring.h>
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
unsigned short c;
|
||
|
|
||
|
_setmbcp( 932 );
|
||
|
c = _mbcjistojms( 0x2152 );
|
||
|
printf( "%#6.4x\n", c );
|
||
|
}
|