kicad/tools/utf8_tests.cpp

38 lines
493 B
C++
Raw Normal View History

2017-03-27 23:46:34 +00:00
#include <string>
2017-03-27 23:46:34 +00:00
#include <utf8.h>
#include <wx/string.h>
void callee( const wxString& aString )
{
UTF8 arg = aString;
printf( "%s: '%s'\n", __func__, arg.c_str() );
}
2017-03-27 23:46:34 +00:00
int main( int argc, char** argv )
{
UTF8 bozo = "ü";
2017-03-27 23:46:34 +00:00
callee( bozo );
2017-03-27 23:46:34 +00:00
wxString s = bozo;
wxString b = bozo;
if( s.IsEmpty() )
{
printf( "string is empty\n" );
}
if( s != bozo.wx_str() )
{
printf( "string miscompare\n" );
}
2017-03-27 23:46:34 +00:00
return 0;
}