1 /* Convert characters in input buffer using conversion descriptor to
3 Copyright (C) 1997-2022 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 */
24 #include <gconv_int.h>
30 iconv (iconv_t cd
, char **inbuf
, size_t *inbytesleft
, char **outbuf
,
33 __gconv_t gcd
= (__gconv_t
) cd
;
34 char *outstart
= outbuf
? *outbuf
: NULL
;
38 if (__glibc_unlikely (inbuf
== NULL
|| *inbuf
== NULL
))
40 if (outbuf
== NULL
|| *outbuf
== NULL
)
41 result
= __gconv (gcd
, NULL
, NULL
, NULL
, NULL
, &irreversible
);
43 result
= __gconv (gcd
, NULL
, NULL
, (unsigned char **) outbuf
,
44 (unsigned char *) (outstart
+ *outbytesleft
),
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
),
57 *inbytesleft
-= *inbuf
- instart
;
60 *outbytesleft
-= *outbuf
- outstart
;
62 switch (__builtin_expect (result
, __GCONV_OK
))
64 case __GCONV_ILLEGAL_DESCRIPTOR
:
66 irreversible
= (size_t) -1L;
69 case __GCONV_ILLEGAL_INPUT
:
71 irreversible
= (size_t) -1L;
74 case __GCONV_FULL_OUTPUT
:
76 irreversible
= (size_t) -1L;
79 case __GCONV_INCOMPLETE_INPUT
:
81 irreversible
= (size_t) -1L;
84 case __GCONV_EMPTY_INPUT
:
90 assert (!"Nothing like this should happen");