mbctoupp.c
来自「开放源码的编译器open watcom 1.6.0版的源代码」· C语言 代码 · 共 35 行
C
35 行
#include <stdio.h>
#include <mbctype.h>
#include <mbstring.h>
unsigned int chars[] = {
'a', /* single-byte a */
'b', /* single-byte b */
'c', /* single-byte c */
'd', /* single-byte d */
'e', /* single-byte e */
0x8281, /* double-byte a */
0x8282, /* double-byte b */
0x8283, /* double-byte c */
0x8284, /* double-byte d */
0x8285 /* double-byte e */
};
#define SIZE sizeof( chars ) / sizeof( unsigned int )
void main()
{
int i;
unsigned int c;
_setmbcp( 932 );
for( i = 0; i < SIZE; i++ ) {
c = _mbctoupper( chars[ i ] );
if( c > 0xff )
printf( "%c%c", c>>8, c );
else
printf( "%c", c );
}
printf( "\n" );
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?