1 /* Convert multibyte character to wide character.
2 Copyright (C) 1999-2002, 2005-2022 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"
55 # include "lc-charset-dispatch.h"
56 # include "mbtowc-lock.h"
58 verify (sizeof (mbstate_t) >= 4);
59 static char internal_state
[4];
62 mbrtowc (wchar_t *pwc
, const char *s
, size_t n
, mbstate_t *ps
)
64 # define FITS_IN_CHAR_TYPE(wc) ((wc) <= WCHAR_MAX)
65 # include "mbrtowc-impl.h"
69 /* Override the system's mbrtowc() function. */
71 # if MBRTOWC_IN_C_LOCALE_MAYBE_EILSEQ
72 # include "hard-locale.h"
79 rpl_mbrtowc (wchar_t *pwc
, const char *s
, size_t n
, mbstate_t *ps
)
84 # if MBRTOWC_NULL_ARG2_BUG || MBRTOWC_RETVAL_BUG || MBRTOWC_EMPTY_INPUT_BUG
93 # if MBRTOWC_EMPTY_INPUT_BUG
101 # if MBRTOWC_RETVAL_BUG
103 static mbstate_t internal_state
;
105 /* Override mbrtowc's internal state. We cannot call mbsinit() on the
106 hidden internal state, but we can call it on our variable. */
108 ps
= &internal_state
;
112 /* Parse the rest of the multibyte character byte for byte. */
114 for (; n
> 0; s
++, n
--)
116 ret
= mbrtowc (&wc
, s
, 1, ps
);
118 if (ret
== (size_t)(-1))
121 if (ret
!= (size_t)(-2))
123 /* The multibyte character has been completed. */
125 return (wc
== 0 ? 0 : count
);
133 # if MBRTOWC_STORES_INCOMPLETE_BUG
134 ret
= mbrtowc (&wc
, s
, n
, ps
);
135 if (ret
< (size_t) -2 && pwc
!= NULL
)
138 ret
= mbrtowc (pwc
, s
, n
, ps
);
141 # if MBRTOWC_NUL_RETVAL_BUG
142 if (ret
< (size_t) -2 && !*pwc
)
146 # if MBRTOWC_IN_C_LOCALE_MAYBE_EILSEQ
147 if ((size_t) -2 <= ret
&& n
!= 0 && ! hard_locale (LC_CTYPE
))
149 unsigned char uc
= *s
;