Lines Matching refs:str_utf8
43 wchar_t *curlx_convert_UTF8_to_wchar(const char *str_utf8)
47 if(str_utf8) {
49 str_utf8, -1, NULL, 0);
53 if(MultiByteToWideChar(CP_UTF8, 0, str_utf8, -1, str_w,
67 char *str_utf8 = NULL;
73 str_utf8 = malloc(bytes);
74 if(str_utf8) {
75 if(WideCharToMultiByte(CP_UTF8, 0, str_w, -1, str_utf8, bytes,
77 free(str_utf8);
84 return str_utf8;