摘要: 1、将单字节Char转化为双字节的wchar_t的转换函数 wchar_t* c2w(const char *str){ int length = strlen(str)+1; wchar_t *t = (wchar_t*)malloc(sizeof(wchar_t)*length); memset 阅读全文
posted @ 2016-10-19 16:20 甩锅侠 阅读(261) 评论(0) 推荐(0)