2 * Character Set Conversion Library 1.2
4 * (c) 1998--2005 Martin Mares <mj@ucw.cz>
6 * This software may be freely distributed and used according to the terms
7 * of the GNU Lesser General Public License.
12 /* Parameters supplied by the caller */
14 const unsigned char *source; /* Current position in source buffer */
15 const unsigned char *source_end; /* End of source buffer */
16 unsigned char *dest; /* Current position in destination buffer */
17 unsigned char *dest_start; /* First byte of destination buffer */
18 unsigned char *dest_end; /* End of destination buffer */
20 /* Internal variables */
22 int (*convert)(struct conv_context *);
23 int source_charset, dest_charset;
24 unsigned short int *in_to_x;
25 unsigned short int *x_to_out;
26 unsigned int state, code, remains;
27 unsigned char *string_at;
30 void conv_init(struct conv_context *);
31 void conv_set_charset(struct conv_context *, int, int);
32 #define conv_run(c) ((c)->convert(c))
34 #define CONV_SOURCE_END 1
35 #define CONV_DEST_END 2
40 CONV_CHARSET_ISO_8859_1,
41 CONV_CHARSET_ISO_8859_2,
42 CONV_CHARSET_ISO_8859_3,
43 CONV_CHARSET_ISO_8859_4,
44 CONV_CHARSET_ISO_8859_5,
45 CONV_CHARSET_ISO_8859_6,
46 CONV_CHARSET_ISO_8859_7,
47 CONV_CHARSET_ISO_8859_8,
48 CONV_CHARSET_ISO_8859_9,
49 CONV_CHARSET_ISO_8859_10,
50 CONV_CHARSET_ISO_8859_11,
51 CONV_CHARSET_ISO_8859_13,
52 CONV_CHARSET_ISO_8859_14,
53 CONV_CHARSET_ISO_8859_15,
54 CONV_CHARSET_ISO_8859_16,
59 CONV_CHARSET_CSN369103,
67 /* Conversion of a single character between current non-UTF8 charset and Unicode */
68 int conv_in_to_ucs(struct conv_context *c, unsigned int y);
69 int conv_ucs_to_out(struct conv_context *c, unsigned int ucs);
71 /* For those brave ones who want to mess with charconv internals */
72 unsigned int conv_x_to_ucs(unsigned int x);
73 unsigned int conv_ucs_to_x(unsigned int ucs);
74 unsigned int conv_x_count(void);
78 int find_charset_by_name(char *);
79 char *charset_name(int);