1 /* A substitute for ISO C99 <wchar.h>, for platforms that have issues.
3 Copyright (C) 2007-2009 Free Software Foundation, Inc.
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, or (at your option)
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.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software Foundation,
17 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
19 /* Written by Eric Blake. */
22 * ISO C 99 <wchar.h> for platforms that have issues.
23 * <http://www.opengroup.org/susv3xbd/wchar.h.html>
25 * For now, this just ensures proper prerequisite inclusion order and
26 * the declaration of wcwidth().
30 @PRAGMA_SYSTEM_HEADER@
33 #if defined __need_mbstate_t || (defined __hpux && ((defined _INTTYPES_INCLUDED && !defined strtoimax) || defined _GL_JUST_INCLUDE_SYSTEM_WCHAR_H)) || defined _GL_ALREADY_INCLUDING_WCHAR_H
34 /* Special invocation convention:
35 - Inside uClibc header files.
36 - On HP-UX 11.00 we have a sequence of nested includes
37 <wchar.h> -> <stdlib.h> -> <stdint.h>, and the latter includes <wchar.h>,
38 once indirectly <stdint.h> -> <sys/types.h> -> <inttypes.h> -> <wchar.h>
39 and once directly. In both situations 'wint_t' is not yet defined,
40 therefore we cannot provide the function overrides; instead include only
41 the system's <wchar.h>.
42 - On IRIX 6.5, similarly, we have an include <wchar.h> -> <wctype.h>, and
43 the latter includes <wchar.h>. But here, we have no way to detect whether
44 <wctype.h> is completely included or is still being included. */
46 #@INCLUDE_NEXT@ @NEXT_WCHAR_H@
49 /* Normal invocation convention. */
53 #define _GL_ALREADY_INCLUDING_WCHAR_H
55 /* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
57 BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be
58 included before <wchar.h>. */
63 /* Include the original <wchar.h> if it exists.
64 Some builds of uClibc lack it. */
65 /* The include_next requires a split double-inclusion guard. */
67 # @INCLUDE_NEXT@ @NEXT_WCHAR_H@
70 #undef _GL_ALREADY_INCLUDING_WCHAR_H
75 /* The definition of GL_LINK_WARNING is copied here. */
82 /* Define wint_t. (Also done in wctype.in.h.) */
83 #if !@HAVE_WINT_T@ && !defined wint_t
91 /* Override mbstate_t if it is too small.
92 On IRIX 6.5, sizeof (mbstate_t) == 1, which is not sufficient for
93 implementing mbrtowc for encodings like UTF-8. */
94 #if !(@HAVE_MBSINIT@ && @HAVE_MBRTOWC@) || @REPLACE_MBSTATE_T@
95 typedef int rpl_mbstate_t
;
97 # define mbstate_t rpl_mbstate_t
98 # define GNULIB_defined_mbstate_t 1
102 /* Convert a single-byte character to a wide character. */
106 # define btowc rpl_btowc
108 # if !@HAVE_BTOWC@ || @REPLACE_BTOWC@
109 extern wint_t btowc (int c
);
111 #elif defined GNULIB_POSIXCHECK
114 (GL_LINK_WARNING ("btowc is unportable - " \
115 "use gnulib module btowc for portability"), \
120 /* Convert a wide character to a single-byte character. */
124 # define wctob rpl_wctob
126 # if (!defined wctob && !@HAVE_DECL_WCTOB@) || @REPLACE_WCTOB@
127 /* wctob is provided by gnulib, or wctob exists but is not declared. */
128 extern int wctob (wint_t wc
);
130 #elif defined GNULIB_POSIXCHECK
133 (GL_LINK_WARNING ("wctob is unportable - " \
134 "use gnulib module wctob for portability"), \
139 /* Test whether *PS is in the initial state. */
141 # if @REPLACE_MBSINIT@
143 # define mbsinit rpl_mbsinit
145 # if !@HAVE_MBSINIT@ || @REPLACE_MBSINIT@
146 extern int mbsinit (const mbstate_t *ps
);
148 #elif defined GNULIB_POSIXCHECK
150 # define mbsinit(p) \
151 (GL_LINK_WARNING ("mbsinit is unportable - " \
152 "use gnulib module mbsinit for portability"), \
157 /* Convert a multibyte character to a wide character. */
159 # if @REPLACE_MBRTOWC@
161 # define mbrtowc rpl_mbrtowc
163 # if !@HAVE_MBRTOWC@ || @REPLACE_MBRTOWC@
164 extern size_t mbrtowc (wchar_t *pwc
, const char *s
, size_t n
, mbstate_t *ps
);
166 #elif defined GNULIB_POSIXCHECK
168 # define mbrtowc(w,s,n,p) \
169 (GL_LINK_WARNING ("mbrtowc is unportable - " \
170 "use gnulib module mbrtowc for portability"), \
171 mbrtowc (w, s, n, p))
175 /* Recognize a multibyte character. */
177 # if @REPLACE_MBRLEN@
179 # define mbrlen rpl_mbrlen
181 # if !@HAVE_MBRLEN@ || @REPLACE_MBRLEN@
182 extern size_t mbrlen (const char *s
, size_t n
, mbstate_t *ps
);
184 #elif defined GNULIB_POSIXCHECK
186 # define mbrlen(s,n,p) \
187 (GL_LINK_WARNING ("mbrlen is unportable - " \
188 "use gnulib module mbrlen for portability"), \
193 /* Convert a string to a wide string. */
194 #if @GNULIB_MBSRTOWCS@
195 # if @REPLACE_MBSRTOWCS@
197 # define mbsrtowcs rpl_mbsrtowcs
199 # if !@HAVE_MBSRTOWCS@ || @REPLACE_MBSRTOWCS@
200 extern size_t mbsrtowcs (wchar_t *dest
, const char **srcp
, size_t len
, mbstate_t *ps
);
202 #elif defined GNULIB_POSIXCHECK
204 # define mbsrtowcs(d,s,l,p) \
205 (GL_LINK_WARNING ("mbsrtowcs is unportable - " \
206 "use gnulib module mbsrtowcs for portability"), \
207 mbsrtowcs (d, s, l, p))
211 /* Convert a string to a wide string. */
212 #if @GNULIB_MBSNRTOWCS@
213 # if @REPLACE_MBSNRTOWCS@
215 # define mbsnrtowcs rpl_mbsnrtowcs
217 # if !@HAVE_MBSNRTOWCS@ || @REPLACE_MBSNRTOWCS@
218 extern size_t mbsnrtowcs (wchar_t *dest
, const char **srcp
, size_t srclen
, size_t len
, mbstate_t *ps
);
220 #elif defined GNULIB_POSIXCHECK
222 # define mbsnrtowcs(d,s,n,l,p) \
223 (GL_LINK_WARNING ("mbsnrtowcs is unportable - " \
224 "use gnulib module mbsnrtowcs for portability"), \
225 mbsnrtowcs (d, s, n, l, p))
229 /* Convert a wide character to a multibyte character. */
231 # if @REPLACE_WCRTOMB@
233 # define wcrtomb rpl_wcrtomb
235 # if !@HAVE_WCRTOMB@ || @REPLACE_WCRTOMB@
236 extern size_t wcrtomb (char *s
, wchar_t wc
, mbstate_t *ps
);
238 #elif defined GNULIB_POSIXCHECK
240 # define wcrtomb(s,w,p) \
241 (GL_LINK_WARNING ("wcrtomb is unportable - " \
242 "use gnulib module wcrtomb for portability"), \
247 /* Convert a wide string to a string. */
248 #if @GNULIB_WCSRTOMBS@
249 # if @REPLACE_WCSRTOMBS@
251 # define wcsrtombs rpl_wcsrtombs
253 # if !@HAVE_WCSRTOMBS@ || @REPLACE_WCSRTOMBS@
254 extern size_t wcsrtombs (char *dest
, const wchar_t **srcp
, size_t len
, mbstate_t *ps
);
256 #elif defined GNULIB_POSIXCHECK
258 # define wcsrtombs(d,s,l,p) \
259 (GL_LINK_WARNING ("wcsrtombs is unportable - " \
260 "use gnulib module wcsrtombs for portability"), \
261 wcsrtombs (d, s, l, p))
265 /* Convert a wide string to a string. */
266 #if @GNULIB_WCSNRTOMBS@
267 # if @REPLACE_WCSNRTOMBS@
269 # define wcsnrtombs rpl_wcsnrtombs
271 # if !@HAVE_WCSNRTOMBS@ || @REPLACE_WCSNRTOMBS@
272 extern size_t wcsnrtombs (char *dest
, const wchar_t **srcp
, size_t srclen
, size_t len
, mbstate_t *ps
);
274 #elif defined GNULIB_POSIXCHECK
276 # define wcsnrtombs(d,s,n,l,p) \
277 (GL_LINK_WARNING ("wcsnrtombs is unportable - " \
278 "use gnulib module wcsnrtombs for portability"), \
279 wcsnrtombs (d, s, n, l, p))
283 /* Return the number of screen columns needed for WC. */
285 # if @REPLACE_WCWIDTH@
287 # define wcwidth rpl_wcwidth
288 extern int wcwidth (wchar_t);
290 # if !defined wcwidth && !@HAVE_DECL_WCWIDTH@
291 /* wcwidth exists but is not declared. */
292 extern int wcwidth (int /* actually wchar_t */);
295 #elif defined GNULIB_POSIXCHECK
297 # define wcwidth(w) \
298 (GL_LINK_WARNING ("wcwidth is unportable - " \
299 "use gnulib module wcwidth for portability"), \
308 #endif /* _GL_WCHAR_H */
309 #endif /* _GL_WCHAR_H */