1 /* Copyright (C) 2011-2024 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/>. */
22 /* This is the private state used if PS is NULL. */
23 static mbstate_t state
;
26 c16rtomb (char *s
, char16_t c16
, mbstate_t *ps
)
35 /* Reset any state relating to surrogate pairs. */
36 ps
->__count
&= 0x7fffffff;
37 ps
->__value
.__wch
= 0;
41 if (ps
->__count
& 0x80000000)
43 /* The previous call passed in the first surrogate of a
45 ps
->__count
&= 0x7fffffff;
46 if (wc
>= 0xdc00 && wc
< 0xe000)
48 + ((ps
->__value
.__wch
& 0x3ff) << 10)
51 /* This is not a low surrogate; ensure an EILSEQ error by
52 trying to decode the high surrogate as a wide character on
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
;
65 return wcrtomb (s
, wc
, ps
);