Searched defs:utf8 (Results 1 - 2 of 2) sorted by relevance
/bind-9.11.3/contrib/idn/idnkit-1.0-src/lib/ |
H A D | ucs4.c | 198 idn_ucs4_utf8toucs4(const char *utf8, unsigned long *ucs4, size_t tolen) { argument 199 const unsigned char *utf8p = (const unsigned char *)utf8; 207 TRACE(("idn_ucs4_utf8toucs4(utf8=\"%s\", tolen=%d)\n", 208 idn__debug_xstring(utf8, 50), (int)tolen)); 295 idn_ucs4_ucs4toutf8(const unsigned long *ucs4, char *utf8, size_t tolen) { argument 296 unsigned char *utf8p = (unsigned char *)utf8; 361 TRACE(("idn_ucs4_ucs4toutf8(): success (utf8=\"%s\")\n", 362 idn__debug_xstring(utf8, 50)));
|
H A D | converter.c | 901 char *utf8 = NULL; local 919 utf8 = (char *)malloc(utf8size); 920 if (utf8 == NULL) { 926 r = idn_ucs4_ucs4toutf8(from, utf8, utf8size); 931 new_utf8 = (char *)realloc(utf8, utf8size); 936 utf8 = new_utf8; 959 inleft = strlen(utf8); 960 inbuf = utf8; 1009 free(utf8); 1018 char *utf8 local [all...] |
Completed in 1718 milliseconds