摘要: 1 #include 2 3 4 //代码转换:从一种编码转为另一种编码 5 6 static int CodeConvert(char *from_charset,char *to_charset,char *inbuf,long inlen,char *outbuf,long outlen) 7 8 { 9 10 iconv_t cd; 11 12... 阅读全文
posted @ 2018-05-10 19:23 茫茫明明 阅读(539) 评论(0) 推荐(0) 编辑