1 /* Convert multibyte character to wide character.
2 Copyright (C) 1999-2002, 2005-2023 Free Software Foundation, Inc.
3 Written by Bruno Haible <bruno@clisp.org>, 2008.
5 This file is free software: you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as
7 published by the Free Software Foundation; either version 2.1 of the
8 License, or (at your option) any later version.
10 This file 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
13 GNU 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/>. */
23 #if GNULIB_defined_mbstate_t
24 /* Implement mbrtowc() on top of mbtowc() for the non-UTF-8 locales
25 and directly for the UTF-8 locales. */
31 # if defined _WIN32 && !defined __CYGWIN__
33 # define WIN32_LEAN_AND_MEAN /* avoid including junk */
36 # elif HAVE_PTHREAD_API
39 # if HAVE_THREADS_H && HAVE_WEAK_SYMBOLS
41 # pragma weak thrd_exit
42 # define c11_threads_in_use() (thrd_exit != NULL)
44 # define c11_threads_in_use() 0
53 # include "attribute.h"
54 # include "lc-charset-dispatch.h"
55 # include "mbtowc-lock.h"
57 static_assert (sizeof (mbstate_t) >= 4);
58 static char internal_state
[4];
61 mbrtowc (wchar_t *pwc
, const char *s
, size_t n
, mbstate_t *ps
)
63 # define FITS_IN_CHAR_TYPE(wc) ((wc) <= WCHAR_MAX)
64 # include "mbrtowc-impl.h"
68 /* Override the system's mbrtowc() function. */
70 # if MBRTOWC_IN_C_LOCALE_MAYBE_EILSEQ
71 # include "hard-locale.h"
78 rpl_mbrtowc (wchar_t *pwc
, const char *s
, size_t n
, mbstate_t *ps
)
83 # if MBRTOWC_NULL_ARG2_BUG || MBRTOWC_RETVAL_BUG || MBRTOWC_EMPTY_INPUT_BUG
92 # if MBRTOWC_EMPTY_INPUT_BUG
100 # if MBRTOWC_RETVAL_BUG
102 static mbstate_t internal_state
;
104 /* Override mbrtowc's internal state. We cannot call mbsinit() on the
105 hidden internal state, but we can call it on our variable. */
107 ps
= &internal_state
;
111 /* Parse the rest of the multibyte character byte for byte. */
113 for (; n
> 0; s
++, n
--)
115 ret
= mbrtowc (&wc
, s
, 1, ps
);
117 if (ret
== (size_t)(-1))
120 if (ret
!= (size_t)(-2))
122 /* The multibyte character has been completed. */
124 return (wc
== 0 ? 0 : count
);
132 # if MBRTOWC_STORES_INCOMPLETE_BUG
133 ret
= mbrtowc (&wc
, s
, n
, ps
);
134 if (ret
< (size_t) -2 && pwc
!= NULL
)
137 ret
= mbrtowc (pwc
, s
, n
, ps
);
140 # if MBRTOWC_NUL_RETVAL_BUG
141 if (ret
< (size_t) -2 && !*pwc
)
145 # if MBRTOWC_IN_C_LOCALE_MAYBE_EILSEQ
146 if ((size_t) -2 <= ret
&& n
!= 0 && ! hard_locale (LC_CTYPE
))
148 unsigned char uc
= *s
;