summaryrefslogtreecommitdiff
path: root/iconv.c
blob: d63f0dd3a3fac2ed601714aa4cc5ad0aaaadf60a (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
#include "iconv.h"
#include "uniconv.h"
#include "uniconvint.h"

#include <errno.h>

iconv_t
uc_iconv_open(const char *to, const char *from)
{
    uniconv_t *uc = uniconv_open(to, from);
    if (!uc)
	return (iconv_t)-1;
    return uc;
}

size_t
uc_iconv (iconv_t cd, char **inbuf,
	  size_t *inbytesleft,
	  char **outbuf,
	  size_t *outbytesleft)
{
    int ret;

    if (cd == (iconv_t)-1 || !cd) {
	errno = EBADF;
	return (size_t)-1;
    }

    ret = uniconv_conv(cd, (const char **)inbuf, inbytesleft,
		       outbuf, outbytesleft);
    if (ret == UNICONV_EBADF) {
	errno = EBADF;
	return (size_t)-1;
    } else if (ret == UNICONV_EINVAL) {
	errno = EINVAL;
	return (size_t)-1;
    } else if (ret == UNICONV_E2BIG) {
	errno = E2BIG;
	return (size_t)-1;
    } else if (ret == UNICONV_EILSEQ) {
	errno = EILSEQ;
	return (size_t)-1;
    }

    return ret;
}

int
uc_iconv_close (iconv_t cd)
{
    if (cd == (iconv_t)-1 || !cd) {
	errno = EBADF;
	return -1;
    }

    uniconv_close(cd);
    return 0;
}

#if defined(__GNUC__) && !defined(UNICONV_REPLACE_ICONV)
#define weak_alias(name, aliasname) _weak_alias(name, aliasname)
#define _weak_alias(name, aliasname) \
  extern __typeof (name) aliasname __attribute__ ((weak, alias (#name)));
#undef iconv_open
#undef iconv
#undef iconv_close
weak_alias (uc_iconv_open, iconv_open)
weak_alias (uc_iconv, iconv)
weak_alias (uc_iconv_close, iconv_close)
#endif

#ifdef UNICONV_REPLACE_ICONV
#undef iconv_open
#undef iconv
#undef iconv_close

iconv_t iconv_open(const char *to, const char *from)
{
    return uc_iconv_open(to, from);
}

size_t iconv (iconv_t cd, char **inbuf,
	      size_t *inbytesleft,
	      char **outbuf,
	      size_t *outbytesleft)
{
    return uc_iconv (cd, inbuf, inbytesleft, outbuf, outbytesleft);
}

int
iconv_close (iconv_t cd)
{
    return uc_iconv_close (cd);
}

#endif