utf8변환 썸네일형 리스트형 char 문자열을 utf8로 변환하기 C로 구현하려니 완전 삽질이 된듯하다. 어디서 소스를 하나 주워왔다. 물론 안에서는 구현되있기는 하지만 나는 utf8형식으로 URL을 날려줘야하기때문에 utf8형식의 텍스트 데이터가 필요해서 약간 수정해봤다. 위에 소스중에 아래 부분이 내가 수정한 부분이다. static char *make_utf8_string(const wchar_t *unicode) { int out_size = 0,size = 0, index = 0, out_index = 0; unsigned char *out; char *out_txt; unsigned short c; char buf[512]; /* first calculate the size of the target string */ c = unicode[index++]; wh.. 더보기 이전 1 다음