elf: Fix wrong break removal from 8ee878592c
[glibc.git] / wcsmbs / c16rtomb.c
blob2d0e6e3c445968e14be1bddcd401625472c8cd65
1 /* Copyright (C) 2011-2023 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <https://www.gnu.org/licenses/>. */
18 #include <uchar.h>
19 #include <wchar.h>
22 /* This is the private state used if PS is NULL. */
23 static mbstate_t state;
25 size_t
26 c16rtomb (char *s, char16_t c16, mbstate_t *ps)
28 wchar_t wc = c16;
30 if (ps == NULL)
31 ps = &state;
33 if (s == NULL)
35 /* Reset any state relating to surrogate pairs. */
36 ps->__count &= 0x7fffffff;
37 ps->__value.__wch = 0;
38 wc = 0;
41 if (ps->__count & 0x80000000)
43 /* The previous call passed in the first surrogate of a
44 surrogate pair. */
45 ps->__count &= 0x7fffffff;
46 if (wc >= 0xdc00 && wc < 0xe000)
47 wc = (0x10000
48 + ((ps->__value.__wch & 0x3ff) << 10)
49 + (wc & 0x3ff));
50 else
51 /* This is not a low surrogate; ensure an EILSEQ error by
52 trying to decode the high surrogate as a wide character on
53 its own. */
54 wc = ps->__value.__wch;
55 ps->__value.__wch = 0;
57 else if (wc >= 0xd800 && wc < 0xdc00)
59 /* The high part of a surrogate pair. */
60 ps->__count |= 0x80000000;
61 ps->__value.__wch = wc;
62 return 0;
65 return wcrtomb (s, wc, ps);