This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/WATCOM/samples/clibexam/mbgetcod.c

21 lines
345 B
C
Raw Normal View History

#include <stdio.h>
#include <mbctype.h>
#include <mbstring.h>
unsigned char set[] = {
"ab\x81\x41\x81\x42\cd\x81"
};
void main()
{
unsigned int c;
unsigned char *str;
_setmbcp( 932 );
str = set;
for( ; *str != '\0'; ) {
str = _mbgetcode( str, &c );
printf( "Character code 0x%2.2x\n", c );
}
}