gdb: update gnulib import
[deliverable/binutils-gdb.git] / gnulib / import / mbrtowc.c
CommitLineData
8690e634 1/* Convert multibyte character to wide character.
5df4cba6 2 Copyright (C) 1999-2002, 2005-2020 Free Software Foundation, Inc.
8690e634
JK
3 Written by Bruno Haible <bruno@clisp.org>, 2008.
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
9
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
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
c0c3707f 16 along with this program. If not, see <https://www.gnu.org/licenses/>. */
8690e634
JK
17
18#include <config.h>
19
20/* Specification. */
21#include <wchar.h>
22
23#if GNULIB_defined_mbstate_t
5df4cba6
SM
24/* Implement mbrtowc() on top of mbtowc() for the non-UTF-8 locales
25 and directly for the UTF-8 locales. */
8690e634
JK
26
27# include <errno.h>
5df4cba6 28# include <stdint.h>
8690e634
JK
29# include <stdlib.h>
30
5df4cba6
SM
31# if defined _WIN32 && !defined __CYGWIN__
32
33# define WIN32_LEAN_AND_MEAN /* avoid including junk */
34# include <windows.h>
35
36# elif HAVE_PTHREAD_API
37
38# include <pthread.h>
39# if HAVE_THREADS_H && HAVE_WEAK_SYMBOLS
40# include <threads.h>
41# pragma weak thrd_exit
42# define c11_threads_in_use() (thrd_exit != NULL)
43# else
44# define c11_threads_in_use() 0
45# endif
46
47# elif HAVE_THREADS_H
48
49# include <threads.h>
50
51# endif
52
8690e634 53# include "verify.h"
5df4cba6
SM
54# include "lc-charset-dispatch.h"
55# include "mbtowc-lock.h"
c0c3707f
CB
56
57# ifndef FALLTHROUGH
58# if __GNUC__ < 7
59# define FALLTHROUGH ((void) 0)
60# else
61# define FALLTHROUGH __attribute__ ((__fallthrough__))
62# endif
63# endif
64
8690e634 65verify (sizeof (mbstate_t) >= 4);
8690e634
JK
66static char internal_state[4];
67
68size_t
69mbrtowc (wchar_t *pwc, const char *s, size_t n, mbstate_t *ps)
70{
5df4cba6
SM
71# define FITS_IN_CHAR_TYPE(wc) ((wc) <= WCHAR_MAX)
72# include "mbrtowc-impl.h"
8690e634
JK
73}
74
75#else
76/* Override the system's mbrtowc() function. */
77
5df4cba6
SM
78# if MBRTOWC_IN_C_LOCALE_MAYBE_EILSEQ
79# include "hard-locale.h"
80# include <locale.h>
81# endif
82
8690e634
JK
83# undef mbrtowc
84
85size_t
86rpl_mbrtowc (wchar_t *pwc, const char *s, size_t n, mbstate_t *ps)
87{
49e4877c
PA
88 size_t ret;
89 wchar_t wc;
90
4a626d0a 91# if MBRTOWC_NULL_ARG2_BUG || MBRTOWC_RETVAL_BUG || MBRTOWC_EMPTY_INPUT_BUG
8690e634
JK
92 if (s == NULL)
93 {
94 pwc = NULL;
95 s = "";
96 n = 1;
97 }
98# endif
99
4a626d0a
PA
100# if MBRTOWC_EMPTY_INPUT_BUG
101 if (n == 0)
102 return (size_t) -2;
103# endif
104
49e4877c
PA
105 if (! pwc)
106 pwc = &wc;
107
8690e634
JK
108# if MBRTOWC_RETVAL_BUG
109 {
110 static mbstate_t internal_state;
111
112 /* Override mbrtowc's internal state. We cannot call mbsinit() on the
113 hidden internal state, but we can call it on our variable. */
114 if (ps == NULL)
115 ps = &internal_state;
116
117 if (!mbsinit (ps))
118 {
119 /* Parse the rest of the multibyte character byte for byte. */
120 size_t count = 0;
121 for (; n > 0; s++, n--)
122 {
49e4877c 123 ret = mbrtowc (&wc, s, 1, ps);
8690e634
JK
124
125 if (ret == (size_t)(-1))
126 return (size_t)(-1);
127 count++;
128 if (ret != (size_t)(-2))
129 {
130 /* The multibyte character has been completed. */
49e4877c 131 *pwc = wc;
8690e634
JK
132 return (wc == 0 ? 0 : count);
133 }
134 }
135 return (size_t)(-2);
136 }
137 }
138# endif
139
5df4cba6
SM
140# if MBRTOWC_STORES_INCOMPLETE_BUG
141 ret = mbrtowc (&wc, s, n, ps);
142 if (ret < (size_t) -2 && pwc != NULL)
143 *pwc = wc;
144# else
49e4877c 145 ret = mbrtowc (pwc, s, n, ps);
5df4cba6 146# endif
8690e634 147
49e4877c
PA
148# if MBRTOWC_NUL_RETVAL_BUG
149 if (ret < (size_t) -2 && !*pwc)
150 return 0;
151# endif
8690e634 152
5df4cba6 153# if MBRTOWC_IN_C_LOCALE_MAYBE_EILSEQ
49e4877c
PA
154 if ((size_t) -2 <= ret && n != 0 && ! hard_locale (LC_CTYPE))
155 {
156 unsigned char uc = *s;
157 *pwc = uc;
158 return 1;
159 }
8690e634 160# endif
49e4877c
PA
161
162 return ret;
8690e634
JK
163}
164
165#endif
This page took 0.592013 seconds and 4 git commands to generate.