New module 'wctob'.
[pspp] / lib / wchar.in.h
1 /* A substitute for ISO C99 <wchar.h>, for platforms that have issues.
2
3    Copyright (C) 2007-2008 Free Software Foundation, Inc.
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 2, or (at your option)
8    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
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.  */
18
19 /* Written by Eric Blake.  */
20
21 /*
22  * ISO C 99 <wchar.h> for platforms that have issues.
23  * <http://www.opengroup.org/susv3xbd/wchar.h.html>
24  *
25  * For now, this just ensures proper prerequisite inclusion order and
26  * the declaration of wcwidth().
27  */
28
29 #if __GNUC__ >= 3
30 @PRAGMA_SYSTEM_HEADER@
31 #endif
32
33 #ifdef __need_mbstate_t
34 /* Special invocation convention inside uClibc header files.  */
35
36 #@INCLUDE_NEXT@ @NEXT_WCHAR_H@
37
38 #else
39 /* Normal invocation convention.  */
40
41 #ifndef _GL_WCHAR_H
42
43 /* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
44    <wchar.h>.
45    BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be
46    included before <wchar.h>.  */
47 #include <stddef.h>
48 #include <stdio.h>
49 #include <time.h>
50
51 /* Include the original <wchar.h> if it exists.
52    Some builds of uClibc lack it.  */
53 /* The include_next requires a split double-inclusion guard.  */
54 #if @HAVE_WCHAR_H@
55 # @INCLUDE_NEXT@ @NEXT_WCHAR_H@
56 #endif
57
58 #ifndef _GL_WCHAR_H
59 #define _GL_WCHAR_H
60
61 /* The definition of GL_LINK_WARNING is copied here.  */
62
63 #ifdef __cplusplus
64 extern "C" {
65 #endif
66
67
68 /* Define wint_t.  (Also done in wctype.in.h.)  */
69 #if !@HAVE_WINT_T@ && !defined wint_t
70 # define wint_t int
71 #endif
72
73
74 /* Convert a single-byte character to a wide character.  */
75 #if @GNULIB_BTOWC@
76 # if !@HAVE_BTOWC@
77 extern wint_t btowc (int c);
78 # endif
79 #elif defined GNULIB_POSIXCHECK
80 # undef btowc
81 # define btowc(c) \
82     (GL_LINK_WARNING ("btowc is unportable - " \
83                       "use gnulib module btowc for portability"), \
84      btowc (c))
85 #endif
86
87
88 /* Convert a wide character to a single-byte character.  */
89 #if @GNULIB_WCTOB@
90 # if !@HAVE_WCTOB@
91 extern int wctob (wint_t wc);
92 # endif
93 #elif defined GNULIB_POSIXCHECK
94 # undef wctob
95 # define wctob(w) \
96     (GL_LINK_WARNING ("wctob is unportable - " \
97                       "use gnulib module wctob for portability"), \
98      wctob (w))
99 #endif
100
101
102 /* Test whether *PS is in the initial state.  */
103 #if @GNULIB_MBSINIT@
104 # if !@HAVE_MBSINIT@
105 extern int mbsinit (const mbstate_t *ps);
106 # endif
107 #elif defined GNULIB_POSIXCHECK
108 # undef mbsinit
109 # define mbsinit(p) \
110     (GL_LINK_WARNING ("mbsinit is unportable - " \
111                       "use gnulib module mbsinit for portability"), \
112      mbsinit (p))
113 #endif
114
115
116 /* Return the number of screen columns needed for WC.  */
117 #if @GNULIB_WCWIDTH@
118 # if @REPLACE_WCWIDTH@
119 #  undef wcwidth
120 #  define wcwidth rpl_wcwidth
121 extern int wcwidth (wchar_t);
122 # else
123 #  if !defined wcwidth && !@HAVE_DECL_WCWIDTH@
124 /* wcwidth exists but is not declared.  */
125 extern int wcwidth (int /* actually wchar_t */);
126 #  endif
127 # endif
128 #elif defined GNULIB_POSIXCHECK
129 # undef wcwidth
130 # define wcwidth(w) \
131     (GL_LINK_WARNING ("wcwidth is unportable - " \
132                       "use gnulib module wcwidth for portability"), \
133      wcwidth (w))
134 #endif
135
136
137 #ifdef __cplusplus
138 }
139 #endif
140
141 #endif /* _GL_WCHAR_H */
142 #endif /* _GL_WCHAR_H */
143 #endif