⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 biccs.c

📁 用于嵌入式Linux系统的标准C的库函数
💻 C
字号:
/* * Copyright (c) 2003, Artem B. Bityuckiy, SoftMine Corporation. * Rights transferred to Franklin Electronic Publishers. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright *    notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright *    notice, this list of conditions and the following disclaimer in the *    documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */#include "deps.h"#include "local.h"#ifdef _ICONV_CONVERTER_BIG5extern _CONST unsigned char _iconv_ccs_table_big5[];#endif#ifdef _ICONV_CONVERTER_CNS11643_PLANE1extern _CONST unsigned char _iconv_ccs_table_cns11643_plane1[];#endif#ifdef _ICONV_CONVERTER_CNS11643_PLANE2extern _CONST unsigned char _iconv_ccs_table_cns11643_plane2[];#endif#ifdef _ICONV_CONVERTER_CNS11643_PLANE14extern _CONST unsigned char _iconv_ccs_table_cns11643_plane14[];#endif#ifdef _ICONV_CONVERTER_CP775extern _CONST unsigned char _iconv_ccs_table_cp775[];#endif#ifdef _ICONV_CONVERTER_CP850extern _CONST unsigned char _iconv_ccs_table_cp850[];#endif#ifdef _ICONV_CONVERTER_CP852extern _CONST unsigned char _iconv_ccs_table_cp852[];#endif#ifdef _ICONV_CONVERTER_CP855extern _CONST unsigned char _iconv_ccs_table_cp855[];#endif#ifdef _ICONV_CONVERTER_CP866extern _CONST unsigned char _iconv_ccs_table_cp866[];#endif#ifdef _ICONV_CONVERTER_GB_2312_80extern _CONST unsigned char _iconv_ccs_table_gb_2312_80[];#endif#ifdef _ICONV_CONVERTER_ISO_8859_1extern _CONST unsigned char _iconv_ccs_table_iso_8859_1[];#endif#ifdef _ICONV_CONVERTER_ISO_8859_15extern _CONST unsigned char _iconv_ccs_table_iso_8859_15[];#endif#ifdef _ICONV_CONVERTER_ISO_8859_2extern _CONST unsigned char _iconv_ccs_table_iso_8859_2[];#endif#ifdef _ICONV_CONVERTER_ISO_8859_4extern _CONST unsigned char _iconv_ccs_table_iso_8859_4[];#endif#ifdef _ICONV_CONVERTER_ISO_8859_5extern _CONST unsigned char _iconv_ccs_table_iso_8859_5[];#endif#ifdef _ICONV_CONVERTER_JIS_X0201extern _CONST unsigned char _iconv_ccs_table_jis_x0201[];#endif#ifdef _ICONV_CONVERTER_JIS_X0208_1983extern _CONST unsigned char _iconv_ccs_table_jis_x0208_1983[];#endif#ifdef _ICONV_CONVERTER_JIS_X0212_1990extern _CONST unsigned char _iconv_ccs_table_jis_x0212_1990[];#endif#ifdef _ICONV_CONVERTER_KOI8_Rextern _CONST unsigned char _iconv_ccs_table_koi8_r[];#endif#ifdef _ICONV_CONVERTER_KOI8_Uextern _CONST unsigned char _iconv_ccs_table_koi8_u[];#endif#ifdef _ICONV_CONVERTER_KSX1001extern _CONST unsigned char _iconv_ccs_table_ksx1001[];#endif#ifdef _ICONV_CONVERTER_SHIFT_JISextern _CONST unsigned char _iconv_ccs_table_shift_jis[];#endif#ifdef _ICONV_CONVERTER_US_ASCIIextern _CONST unsigned char _iconv_ccs_table_us_ascii[];#endif_CONST iconv_builtin_table_t _iconv_builtin_ccs[] ={#ifdef _ICONV_CONVERTER_BIG5  {"big5", (_CONST _VOID_PTR)&_iconv_ccs_table_big5},#endif#ifdef _ICONV_CONVERTER_CNS11643_PLANE1  {"cns11643_plane1", (_CONST _VOID_PTR)&_iconv_ccs_table_cns11643_plane1},#endif#ifdef _ICONV_CONVERTER_CNS11643_PLANE2  {"cns11643_plane2", (_CONST _VOID_PTR)&_iconv_ccs_table_cns11643_plane2},#endif#ifdef _ICONV_CONVERTER_CNS11643_PLANE14  {"cns11643_plane14", (_CONST _VOID_PTR)&_iconv_ccs_table_cns11643_plane14},#endif#ifdef _ICONV_CONVERTER_CP775  {"cp775", (_CONST _VOID_PTR)&_iconv_ccs_table_cp775},#endif#ifdef _ICONV_CONVERTER_CP850  {"cp850", (_CONST _VOID_PTR)&_iconv_ccs_table_cp850},#endif#ifdef _ICONV_CONVERTER_CP852  {"cp852", (_CONST _VOID_PTR)&_iconv_ccs_table_cp852},#endif#ifdef _ICONV_CONVERTER_CP855  {"cp855", (_CONST _VOID_PTR)&_iconv_ccs_table_cp855},#endif#ifdef _ICONV_CONVERTER_CP866  {"cp866", (_CONST _VOID_PTR)&_iconv_ccs_table_cp866},#endif#ifdef _ICONV_CONVERTER_GB_2312_80  {"gb_2312_80", (_CONST _VOID_PTR)&_iconv_ccs_table_gb_2312_80},#endif#ifdef _ICONV_CONVERTER_ISO_8859_1  {"iso_8859_1", (_CONST _VOID_PTR)&_iconv_ccs_table_iso_8859_1},#endif#ifdef _ICONV_CONVERTER_ISO_8859_15  {"iso_8859_15", (_CONST _VOID_PTR)&_iconv_ccs_table_iso_8859_15},#endif#ifdef _ICONV_CONVERTER_ISO_8859_2  {"iso_8859_2", (_CONST _VOID_PTR)&_iconv_ccs_table_iso_8859_2},#endif#ifdef _ICONV_CONVERTER_ISO_8859_4  {"iso_8859_4", (_CONST _VOID_PTR)&_iconv_ccs_table_iso_8859_4},#endif#ifdef _ICONV_CONVERTER_ISO_8859_5  {"iso_8859_5", (_CONST _VOID_PTR)&_iconv_ccs_table_iso_8859_5},#endif#ifdef _ICONV_CONVERTER_JIS_X0201  {"jis_x0201", (_CONST _VOID_PTR)&_iconv_ccs_table_jis_x0201},#endif#ifdef _ICONV_CONVERTER_JIS_X0208_1983  {"jis_x0208_1983", (_CONST _VOID_PTR)&_iconv_ccs_table_jis_x0208_1983},#endif#ifdef _ICONV_CONVERTER_JIS_X0212_1990  {"jis_x0212_1990", (_CONST _VOID_PTR)&_iconv_ccs_table_jis_x0212_1990},#endif#ifdef _ICONV_CONVERTER_KOI8_R  {"koi8_r", (_CONST _VOID_PTR)&_iconv_ccs_table_koi8_r},#endif#ifdef _ICONV_CONVERTER_KOI8_U  {"koi8_u", (_CONST _VOID_PTR)&_iconv_ccs_table_koi8_u},#endif#ifdef _ICONV_CONVERTER_KSX1001  {"ksx1001", (_CONST _VOID_PTR)&_iconv_ccs_table_ksx1001},#endif#ifdef _ICONV_CONVERTER_SHIFT_JIS  {"shift_jis", (_CONST _VOID_PTR)&_iconv_ccs_table_shift_jis},#endif#ifdef _ICONV_CONVERTER_US_ASCII  {"us_ascii", (_CONST _VOID_PTR)&_iconv_ccs_table_us_ascii},#endif  {NULL, (_CONST _VOID_PTR)NULL}};

⌨️ 快捷键说明

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