xref: /dflybsd-src/lib/i18n_module/iconv_std/citrus_iconv_std_local.h (revision 0d5acd7467c4e95f792ef49fceb3ab8e917ce86b)
1*0d5acd74SJohn Marino /* $FreeBSD: head/lib/libiconv_modules/iconv_std/citrus_iconv_std_local.h 219019 2011-02-25 00:04:39Z gabor $ */
2*0d5acd74SJohn Marino /*	$NetBSD: citrus_iconv_std_local.h,v 1.2 2003/07/01 09:42:16 tshiozak Exp $	*/
3*0d5acd74SJohn Marino 
4*0d5acd74SJohn Marino /*-
5*0d5acd74SJohn Marino  * Copyright (c)2003 Citrus Project,
6*0d5acd74SJohn Marino  * All rights reserved.
7*0d5acd74SJohn Marino  *
8*0d5acd74SJohn Marino  * Redistribution and use in source and binary forms, with or without
9*0d5acd74SJohn Marino  * modification, are permitted provided that the following conditions
10*0d5acd74SJohn Marino  * are met:
11*0d5acd74SJohn Marino  * 1. Redistributions of source code must retain the above copyright
12*0d5acd74SJohn Marino  *    notice, this list of conditions and the following disclaimer.
13*0d5acd74SJohn Marino  * 2. Redistributions in binary form must reproduce the above copyright
14*0d5acd74SJohn Marino  *    notice, this list of conditions and the following disclaimer in the
15*0d5acd74SJohn Marino  *    documentation and/or other materials provided with the distribution.
16*0d5acd74SJohn Marino  *
17*0d5acd74SJohn Marino  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18*0d5acd74SJohn Marino  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19*0d5acd74SJohn Marino  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20*0d5acd74SJohn Marino  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21*0d5acd74SJohn Marino  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22*0d5acd74SJohn Marino  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23*0d5acd74SJohn Marino  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24*0d5acd74SJohn Marino  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25*0d5acd74SJohn Marino  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26*0d5acd74SJohn Marino  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27*0d5acd74SJohn Marino  * SUCH DAMAGE.
28*0d5acd74SJohn Marino  */
29*0d5acd74SJohn Marino 
30*0d5acd74SJohn Marino #ifndef _CITRUS_ICONV_STD_LOCAL_H_
31*0d5acd74SJohn Marino #define _CITRUS_ICONV_STD_LOCAL_H_
32*0d5acd74SJohn Marino 
33*0d5acd74SJohn Marino /*
34*0d5acd74SJohn Marino  * encoding
35*0d5acd74SJohn Marino  */
36*0d5acd74SJohn Marino struct _citrus_iconv_std_encoding {
37*0d5acd74SJohn Marino 	struct _citrus_stdenc	*se_handle;
38*0d5acd74SJohn Marino 	void			*se_ps;
39*0d5acd74SJohn Marino 	void			*se_pssaved;
40*0d5acd74SJohn Marino };
41*0d5acd74SJohn Marino 
42*0d5acd74SJohn Marino /*
43*0d5acd74SJohn Marino  * dst
44*0d5acd74SJohn Marino  */
45*0d5acd74SJohn Marino struct _citrus_iconv_std_dst {
46*0d5acd74SJohn Marino 	TAILQ_ENTRY(_citrus_iconv_std_dst)	 sd_entry;
47*0d5acd74SJohn Marino 	struct _citrus_csmapper			*sd_mapper;
48*0d5acd74SJohn Marino 	_citrus_csid_t				 sd_csid;
49*0d5acd74SJohn Marino 	unsigned long				 sd_norm;
50*0d5acd74SJohn Marino };
51*0d5acd74SJohn Marino TAILQ_HEAD(_citrus_iconv_std_dst_list, _citrus_iconv_std_dst);
52*0d5acd74SJohn Marino 
53*0d5acd74SJohn Marino /*
54*0d5acd74SJohn Marino  * src
55*0d5acd74SJohn Marino  */
56*0d5acd74SJohn Marino struct _citrus_iconv_std_src {
57*0d5acd74SJohn Marino 	TAILQ_ENTRY(_citrus_iconv_std_src)	 ss_entry;
58*0d5acd74SJohn Marino 	struct _citrus_iconv_std_dst_list	 ss_dsts;
59*0d5acd74SJohn Marino 	_citrus_csid_t				 ss_csid;
60*0d5acd74SJohn Marino };
61*0d5acd74SJohn Marino TAILQ_HEAD(_citrus_iconv_std_src_list, _citrus_iconv_std_src);
62*0d5acd74SJohn Marino 
63*0d5acd74SJohn Marino /*
64*0d5acd74SJohn Marino  * iconv_std handle
65*0d5acd74SJohn Marino  */
66*0d5acd74SJohn Marino struct _citrus_iconv_std_shared {
67*0d5acd74SJohn Marino 	struct _citrus_stdenc			*is_dst_encoding;
68*0d5acd74SJohn Marino 	struct _citrus_stdenc			*is_src_encoding;
69*0d5acd74SJohn Marino 	struct _citrus_iconv_std_src_list	 is_srcs;
70*0d5acd74SJohn Marino 	_citrus_wc_t				 is_invalid;
71*0d5acd74SJohn Marino 	int					 is_use_invalid;
72*0d5acd74SJohn Marino };
73*0d5acd74SJohn Marino 
74*0d5acd74SJohn Marino /*
75*0d5acd74SJohn Marino  * iconv_std context
76*0d5acd74SJohn Marino  */
77*0d5acd74SJohn Marino struct _citrus_iconv_std_context {
78*0d5acd74SJohn Marino 	struct _citrus_iconv_std_encoding	 sc_dst_encoding;
79*0d5acd74SJohn Marino 	struct _citrus_iconv_std_encoding	 sc_src_encoding;
80*0d5acd74SJohn Marino };
81*0d5acd74SJohn Marino 
82*0d5acd74SJohn Marino #endif
83