miniconv.h.svn-base

来自「psp播放器PPA源码,在MSYS/CYGWIN环境下编译(GNU-C)」· SVN-BASE 代码 · 共 50 行

SVN-BASE
50
字号
#ifndef __MINICONV_H__#define __MINICONV_H__typedef char* (*utf8_convert_function)(const unsigned char*);#ifdef __cplusplusextern "C" {#endifchar* utf16le_to_utf8(const unsigned short* utf16le);char* utf16be_to_utf8(const unsigned short* utf16be);#ifdef GBK_CONVchar* gbk_to_utf8(const unsigned char* gbk);#endif#ifdef BIG5_CONVchar* big5_to_utf8(const unsigned char* big5);#endif#ifdef SJIS_CONVchar* sjis_to_utf8(const unsigned char* sjis);#endif#ifdef EUC_KR_CONVchar* euc_kr_to_utf8(const unsigned char* euc_kr);#endif#ifdef MS_EE_CONVchar* ms_ee_to_utf8(const unsigned char* ms_ee);#endif#ifdef MS_CYRL_CONVchar* ms_cyrl_to_utf8(const unsigned char* ms_cyrl);#endif#ifdef MS_ARAB_CONVchar* ms_arab_to_utf8(const unsigned char* ms_cyrl);#endif#ifdef ISO8859_9_CONVchar* iso8859_9_to_utf8(const unsigned char* iso8859_9);#endif#ifdef ISO8859_6_CONVchar* iso8859_6_to_utf8(const unsigned char* iso8859_6);#endif#ifdef ISO8859_2_CONVchar* iso8859_2_to_utf8(const unsigned char* iso8859_2);#endif#ifdef ISO8859_1_CONVchar* iso8859_1_to_utf8(const unsigned char* iso8859_1);#endif#ifdef __cplusplus}#endif#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?