HomeSort by relevance Sort by last modified time
    Searched full:str_utf8 (Results 1 - 2 of 2) sorted by null

  /external/curl/lib/
curl_multibyte.c 38 wchar_t *Curl_convert_UTF8_to_wchar(const char *str_utf8)
42 if(str_utf8) {
44 str_utf8, -1, NULL, 0);
48 if(MultiByteToWideChar(CP_UTF8, 0, str_utf8, -1, str_w,
62 char *str_utf8 = NULL; local
68 str_utf8 = malloc(str_utf8_len * sizeof(wchar_t));
69 if(str_utf8) {
70 if(WideCharToMultiByte(CP_UTF8, 0, str_w, -1, str_utf8, str_utf8_len,
72 free(str_utf8);
79 return str_utf8;
    [all...]
curl_multibyte.h 33 wchar_t *Curl_convert_UTF8_to_wchar(const char *str_utf8);

Completed in 449 milliseconds