Convert a TaggedText encoded unicode string to utf8
Convert a TaggedText encoded unicode string to utf8
Name | Type | Default | Description |
Return | char * | ||
dest | char* | - | destination buffer. Buffer must have been allocated static or usin the alloc function |
src | char* | - | source string |
char * tagged = "Preisst<0x00F6>rer gro<0x00DF>"; char utf8[ 4096]; if (tagged_to_utf8 (utf8, tagged) == 0) { showmessage ("Conversion failed"); return -1; } showmessage ("%s", utf8); // => "Preisstörer groß"
Alphabetic index HTML hierarchy of classes or Java