12345678 |
- #ifndef __LANGUANGE_H_
- #define __LANGUANGE_H_
- char Utf8ToGbkOrUnicode(char *ibuf, int inlen,char *outbuf, int *outlen, char codetype);//0- GBK 1-UNICODE
- void gbkToUnicode(char *inbuf, int inlen, char *outbuf, int *outlen);
- void unicodeToGbk(const char *inbuf, unsigned char *outbuf, unsigned short *outlen);
- #endif
|