Welcome to mirror list, hosted at ThFree Co, Russian Federation.

biccs.c « lib « iconv « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5a8a951b7a42fa084ce83e73c6d3ce28886b31e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
/*
 * 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.
 */
#ifdef ENABLE_ICONV
 
#include "deps.h"
#include <_ansi.h>
#include "local.h"

#ifdef ICONV_CONVERTER_BIG5
extern _CONST unsigned char iconv_ccs_table_big5[];
#endif
#ifdef ICONV_CONVERTER_CNS11643_PLANE1
extern _CONST unsigned char iconv_ccs_table_cns11643_plane1[];
#endif
#ifdef ICONV_CONVERTER_CNS11643_PLANE2
extern _CONST unsigned char iconv_ccs_table_cns11643_plane2[];
#endif
#ifdef ICONV_CONVERTER_CNS11643_PLANE14
extern _CONST unsigned char iconv_ccs_table_cns11643_plane14[];
#endif
#ifdef ICONV_CONVERTER_CP775
extern _CONST unsigned char iconv_ccs_table_cp775[];
#endif
#ifdef ICONV_CONVERTER_CP850
extern _CONST unsigned char iconv_ccs_table_cp850[];
#endif
#ifdef ICONV_CONVERTER_CP852
extern _CONST unsigned char iconv_ccs_table_cp852[];
#endif
#ifdef ICONV_CONVERTER_CP855
extern _CONST unsigned char iconv_ccs_table_cp855[];
#endif
#ifdef ICONV_CONVERTER_CP866
extern _CONST unsigned char iconv_ccs_table_cp866[];
#endif
#ifdef ICONV_CONVERTER_GB_2312_80
extern _CONST unsigned char iconv_ccs_table_gb_2312_80[];
#endif
#ifdef ICONV_CONVERTER_ISO_8859_1
extern _CONST unsigned char iconv_ccs_table_iso_8859_1[];
#endif
#ifdef ICONV_CONVERTER_ISO_8859_15
extern _CONST unsigned char iconv_ccs_table_iso_8859_15[];
#endif
#ifdef ICONV_CONVERTER_ISO_8859_2
extern _CONST unsigned char iconv_ccs_table_iso_8859_2[];
#endif
#ifdef ICONV_CONVERTER_ISO_8859_4
extern _CONST unsigned char iconv_ccs_table_iso_8859_4[];
#endif
#ifdef ICONV_CONVERTER_ISO_8859_5
extern _CONST unsigned char iconv_ccs_table_iso_8859_5[];
#endif
#ifdef ICONV_CONVERTER_JIS_X0201
extern _CONST unsigned char iconv_ccs_table_jis_x0201[];
#endif
#ifdef ICONV_CONVERTER_JIS_X0208_1983
extern _CONST unsigned char iconv_ccs_table_jis_x0208_1983[];
#endif
#ifdef ICONV_CONVERTER_JIS_X0212_1990
extern _CONST unsigned char iconv_ccs_table_jis_x0212_1990[];
#endif
#ifdef ICONV_CONVERTER_KOI8_R
extern _CONST unsigned char iconv_ccs_table_koi8_r[];
#endif
#ifdef ICONV_CONVERTER_KOI8_U
extern _CONST unsigned char iconv_ccs_table_koi8_u[];
#endif
#ifdef ICONV_CONVERTER_KSX1001
extern _CONST unsigned char iconv_ccs_table_ksx1001[];
#endif
#ifdef ICONV_CONVERTER_SHIFT_JIS
extern _CONST unsigned char iconv_ccs_table_shift_jis[];
#endif
#ifdef ICONV_CONVERTER_US_ASCII
extern _CONST unsigned char iconv_ccs_table_us_ascii[];
#endif

_CONST iconv_builtin_table 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, NULL}
};

#endif /* #ifdef ENABLE_ICONV */