powerpc64: Fix by using the configure value $libc_cv_cc_submachine [BZ #31629]
[glibc.git] / iconv / iconv.c
blob14386baab941d5be84b0f9f8a4e80c5e8b4254b2
1 /* Convert characters in input buffer using conversion descriptor to
2 output buffer.
3 Copyright (C) 1997-2024 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <https://www.gnu.org/licenses/>. */
20 #include <stddef.h> /* for NULL */
21 #include <errno.h>
22 #include <iconv.h>
24 #include <gconv_int.h>
26 #include <assert.h>
29 size_t
30 iconv (iconv_t cd, char **inbuf, size_t *inbytesleft, char **outbuf,
31 size_t *outbytesleft)
33 __gconv_t gcd = (__gconv_t) cd;
34 char *outstart = outbuf ? *outbuf : NULL;
35 size_t irreversible;
36 int result;
38 if (__glibc_unlikely (inbuf == NULL || *inbuf == NULL))
40 if (outbuf == NULL || *outbuf == NULL)
41 result = __gconv (gcd, NULL, NULL, NULL, NULL, &irreversible);
42 else
43 result = __gconv (gcd, NULL, NULL, (unsigned char **) outbuf,
44 (unsigned char *) (outstart + *outbytesleft),
45 &irreversible);
47 else
49 const char *instart = *inbuf;
51 result = __gconv (gcd, (const unsigned char **) inbuf,
52 (const unsigned char *) (*inbuf + *inbytesleft),
53 (unsigned char **) outbuf,
54 (unsigned char *) (*outbuf + *outbytesleft),
55 &irreversible);
57 *inbytesleft -= *inbuf - instart;
59 if (outstart != NULL)
60 *outbytesleft -= *outbuf - outstart;
62 switch (__builtin_expect (result, __GCONV_OK))
64 case __GCONV_ILLEGAL_DESCRIPTOR:
65 __set_errno (EBADF);
66 irreversible = (size_t) -1L;
67 break;
69 case __GCONV_ILLEGAL_INPUT:
70 __set_errno (EILSEQ);
71 irreversible = (size_t) -1L;
72 break;
74 case __GCONV_FULL_OUTPUT:
75 __set_errno (E2BIG);
76 irreversible = (size_t) -1L;
77 break;
79 case __GCONV_INCOMPLETE_INPUT:
80 __set_errno (EINVAL);
81 irreversible = (size_t) -1L;
82 break;
84 case __GCONV_EMPTY_INPUT:
85 case __GCONV_OK:
86 /* Nothing. */
87 break;
89 default:
90 assert (!"Nothing like this should happen");
93 return irreversible;