dirent: Fix compilation error in C++ mode on OS/2 kLIBC.
[gnulib.git] / lib / unistr / u16-to-u8.c
blob95902d12632b1a02932e3f73c96c0e8166ffe266
1 /* Convert UTF-16 string to UTF-8 string.
2 Copyright (C) 2002, 2006-2007, 2009-2021 Free Software Foundation, Inc.
3 Written by Bruno Haible <bruno@clisp.org>, 2002.
5 This program is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Lesser General Public License as published
7 by the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public License
16 along with this program. If not, see <https://www.gnu.org/licenses/>. */
18 #include <config.h>
20 /* Specification. */
21 #include "unistr.h"
23 #define FUNC u16_to_u8
24 #define SRC_UNIT uint16_t
25 #define DST_UNIT uint8_t
27 #include <errno.h>
28 #include <stdlib.h>
29 #include <string.h>
31 DST_UNIT *
32 FUNC (const SRC_UNIT *s, size_t n, DST_UNIT *resultbuf, size_t *lengthp)
34 const SRC_UNIT *s_end = s + n;
35 /* Output string accumulator. */
36 DST_UNIT *result;
37 size_t allocated;
38 size_t length;
40 if (resultbuf != NULL)
42 result = resultbuf;
43 allocated = *lengthp;
45 else
47 result = NULL;
48 allocated = 0;
50 length = 0;
51 /* Invariants:
52 result is either == resultbuf or == NULL or malloc-allocated.
53 If length > 0, then result != NULL. */
55 while (s < s_end)
57 ucs4_t uc;
58 int count;
60 /* Fetch a Unicode character from the input string. */
61 count = u16_mbtoucr (&uc, s, s_end - s);
62 if (count < 0)
64 if (!(result == resultbuf || result == NULL))
65 free (result);
66 errno = EILSEQ;
67 return NULL;
69 s += count;
71 /* Store it in the output string. */
72 count = u8_uctomb (result + length, uc, allocated - length);
73 if (count == -1)
75 if (!(result == resultbuf || result == NULL))
76 free (result);
77 errno = EILSEQ;
78 return NULL;
80 if (count == -2)
82 DST_UNIT *memory;
84 allocated = (allocated > 0 ? 2 * allocated : 12);
85 if (length + 6 > allocated)
86 allocated = length + 6;
87 if (result == resultbuf || result == NULL)
88 memory = (DST_UNIT *) malloc (allocated * sizeof (DST_UNIT));
89 else
90 memory =
91 (DST_UNIT *) realloc (result, allocated * sizeof (DST_UNIT));
93 if (memory == NULL)
95 if (!(result == resultbuf || result == NULL))
96 free (result);
97 errno = ENOMEM;
98 return NULL;
100 if (result == resultbuf && length > 0)
101 memcpy ((char *) memory, (char *) result,
102 length * sizeof (DST_UNIT));
103 result = memory;
104 count = u8_uctomb (result + length, uc, allocated - length);
105 if (count < 0)
106 abort ();
108 length += count;
111 if (length == 0)
113 if (result == NULL)
115 /* Return a non-NULL value. NULL means error. */
116 result = (DST_UNIT *) malloc (1);
117 if (result == NULL)
119 errno = ENOMEM;
120 return NULL;
124 else if (result != resultbuf && length < allocated)
126 /* Shrink the allocated memory if possible. */
127 DST_UNIT *memory;
129 memory = (DST_UNIT *) realloc (result, length * sizeof (DST_UNIT));
130 if (memory != NULL)
131 result = memory;
134 *lengthp = length;
135 return result;