mirror of https://github.com/libsdl-org/SDL.git
48 lines
1.0 KiB
C
48 lines
1.0 KiB
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include "geniconv.h"
|
|
|
|
int main(void)
|
|
{
|
|
char acBuf[128];
|
|
char *inbuf = "ôÅÓÔ - ÐÒÏ×ÅÒËÁ"; // KOI8-R string.
|
|
size_t inbytesleft = strlen( inbuf );
|
|
char *outbuf = &acBuf;
|
|
size_t outbytesleft = sizeof( acBuf );
|
|
iconv_t ic;
|
|
|
|
// KOI8 -> system cp.
|
|
|
|
ic = iconv_open( "", "KOI8-R" );
|
|
if ( ic == (iconv_t)(-1) )
|
|
{
|
|
puts( "iconv_open() fail" );
|
|
return 1;
|
|
}
|
|
|
|
iconv( ic, &inbuf, &inbytesleft, &outbuf, &outbytesleft );
|
|
printf( "KOI8-R to system cp.: %s\n", &acBuf );
|
|
|
|
iconv_close( ic );
|
|
|
|
// System cp. -> UTF-8 -> system cp.
|
|
|
|
// System cp. -> UTF-8 by StrUTF8New().
|
|
inbuf = StrUTF8New( 1, &acBuf, strlen( &acBuf ) );
|
|
|
|
// UTF-8 -> system cp. by StrUTF8().
|
|
if ( StrUTF8( 0, &acBuf, sizeof(acBuf), inbuf, strlen( inbuf ) ) == -1 )
|
|
puts( "StrUTF8() failed" );
|
|
else
|
|
printf( "system cp. -> UTF-8 -> system cp.: %s\n", &acBuf );
|
|
|
|
free( inbuf );
|
|
|
|
// Unload used DLL.
|
|
iconv_clean();
|
|
|
|
puts( "Done." );
|
|
return 0;
|
|
}
|