Update.
[glibc.git] / iconv / iconv.c
blobee16d3b091459cbc8fd2bad450703a4012f60e93
1 /* Convert characters in input buffer using conversion descriptor to
2 output buffer.
3 Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
5 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
7 The GNU C Library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Library General Public License as
9 published by the Free Software Foundation; either version 2 of the
10 License, or (at your option) any later version.
12 The GNU C Library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Library General Public License for more details.
17 You should have received a copy of the GNU Library General Public
18 License along with the GNU C Library; see the file COPYING.LIB. If not,
19 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 #include <stddef.h> /* for NULL */
23 #include <errno.h>
24 #include <iconv.h>
26 #include <gconv_int.h>
28 #include <assert.h>
31 size_t
32 iconv (iconv_t cd, const char **inbuf, size_t *inbytesleft, char **outbuf,
33 size_t *outbytesleft)
35 __gconv_t gcd = (__gconv_t) cd;
36 char *outstart = outbuf ? *outbuf : NULL;
37 size_t converted;
38 int result;
40 if (inbuf == NULL || *inbuf == NULL)
42 result = __gconv (gcd, NULL, NULL, (unsigned char **) outbuf,
43 (unsigned char *) (outstart + *outbytesleft),
44 &converted);
46 else
48 const char *instart = *inbuf;
50 result = __gconv (gcd, (const unsigned char **) inbuf,
51 (const unsigned char *) (*inbuf + *inbytesleft),
52 (unsigned char **) outbuf,
53 (unsigned char *) (*outbuf + *outbytesleft),
54 &converted);
56 *inbytesleft -= *inbuf - instart;
58 if (outstart != NULL)
59 *outbytesleft -= *outbuf - outstart;
61 switch (result)
63 case __GCONV_ILLEGAL_DESCRIPTOR:
64 __set_errno (EBADF);
65 converted = (size_t) -1L;
66 break;
68 case __GCONV_ILLEGAL_INPUT:
69 __set_errno (EILSEQ);
70 converted = (size_t) -1L;
71 break;
73 case __GCONV_FULL_OUTPUT:
74 __set_errno (E2BIG);
75 converted = (size_t) -1L;
76 break;
78 case __GCONV_INCOMPLETE_INPUT:
79 __set_errno (EINVAL);
80 converted = (size_t) -1L;
81 break;
83 case __GCONV_EMPTY_INPUT:
84 case __GCONV_OK:
85 /* Nothing. */
86 break;
88 default:
89 assert (!"Nothing like this should happen");
92 return converted;