1 /* $NetBSD: src/lib/libc/iconv/iconv.c,v 1.4 2004/08/02 13:38:21 tshiozak Exp $ */
2 /* $DragonFly: src/lib/libc/iconv/iconv.c,v 1.3 2005/11/23 08:50:34 swildner Exp $ */
5 * Copyright (c)2003 Citrus Project,
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 #include <sys/queue.h>
37 #include <sys/types.h>
38 #include "../citrus/citrus_types.h"
39 #include "../citrus/citrus_module.h"
40 #include "../citrus/citrus_esdb.h"
41 #include "../citrus/citrus_hash.h"
42 #include "../citrus/citrus_iconv.h"
44 #define ISBADF(_h_) (!(_h_) || (_h_) == (iconv_t)-1)
47 _iconv_open(const char *out
, const char *in
)
50 struct _citrus_iconv
*handle
;
52 ret
= _citrus_iconv_open(&handle
, _PATH_ICONV
, in
, out
);
58 return ((iconv_t
)(void *)handle
);
62 _iconv_close(iconv_t handle
)
69 _citrus_iconv_close((struct _citrus_iconv
*)(void *)handle
);
75 _iconv(iconv_t handle
, const char **in
, size_t *szin
, char **out
, size_t *szout
)
85 err
= _citrus_iconv_convert(
86 (struct _citrus_iconv
*)(void *)handle
, in
, szin
, out
, szout
,
97 __iconv(iconv_t handle
, const char **in
, size_t *szin
, char **out
,
98 size_t *szout
, u_int32_t flags
, size_t *invalids
)
103 if (ISBADF(handle
)) {
108 err
= _citrus_iconv_convert(
109 (struct _citrus_iconv
*)(void *)handle
, in
, szin
, out
, szout
,
122 __iconv_get_list(char ***rlist
, size_t *rsz
)
126 ret
= _citrus_esdb_get_list(rlist
, rsz
);
136 __iconv_free_list(char **list
, size_t sz
)
138 _citrus_esdb_free_list(list
, sz
);
141 __weak_reference(_iconv
, iconv
);
142 __weak_reference(_iconv_open
, iconv_open
);
143 __weak_reference(_iconv_close
, iconv_close
);