mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
20 lines
340 B
C++
20 lines
340 B
C++
#include <Core/Core.h>
|
|
|
|
CONSOLE_APP_MAIN
|
|
{
|
|
String q = "Ahoj kamarade";
|
|
WString w;
|
|
{
|
|
TimeStop s;
|
|
for(int i = 0; i < 10000000; i++)
|
|
w = ToUnicode(q, CHARSET_WIN1250);
|
|
RLOG("normal: " << s);
|
|
}
|
|
{
|
|
TimeStop s;
|
|
for(int i = 0; i < 10000000; i++)
|
|
w = ToUnicode(q, CHARSET_UTF8);
|
|
RLOG("utf8: " << s);
|
|
}
|
|
|
|
}
|