maint: update copyright
[gnulib.git] / tests / test-stdio-c++.cc
1 /* Test of <stdio.h> substitute in C++ mode.
2    Copyright (C) 2010-2014 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
16
17 /* Written by Bruno Haible <bruno@clisp.org>, 2010.  */
18
19 #define GNULIB_NAMESPACE gnulib
20 #include <config.h>
21
22 #include <stdio.h>
23
24 #include "signature.h"
25
26
27 #if GNULIB_TEST_DPRINTF
28 SIGNATURE_CHECK (GNULIB_NAMESPACE::dprintf, int, (int, const char *, ...));
29 #endif
30
31 #if GNULIB_TEST_FCLOSE
32 SIGNATURE_CHECK (GNULIB_NAMESPACE::fclose, int, (FILE *));
33 #endif
34
35 #if GNULIB_TEST_FDOPEN
36 SIGNATURE_CHECK (GNULIB_NAMESPACE::fdopen, FILE *, (int, const char *));
37 #endif
38
39 #if GNULIB_TEST_FFLUSH
40 SIGNATURE_CHECK (GNULIB_NAMESPACE::fflush, int, (FILE *));
41 #endif
42
43 #if GNULIB_TEST_FGETC
44 SIGNATURE_CHECK (GNULIB_NAMESPACE::fgetc, int, (FILE *));
45 #endif
46
47 #if GNULIB_TEST_FGETS
48 SIGNATURE_CHECK (GNULIB_NAMESPACE::fgets, char *, (char *, int, FILE *));
49 #endif
50
51 #if GNULIB_TEST_FOPEN
52 SIGNATURE_CHECK (GNULIB_NAMESPACE::fopen, FILE *,
53                  (const char *, const char *));
54 #endif
55
56 #if GNULIB_TEST_FPRINTF_POSIX || GNULIB_TEST_FPRINTF
57 SIGNATURE_CHECK (GNULIB_NAMESPACE::fprintf, int, (FILE *, const char *, ...));
58 #endif
59
60 #if GNULIB_TEST_FPURGE
61 SIGNATURE_CHECK (GNULIB_NAMESPACE::fpurge, int, (FILE *));
62 #endif
63
64 #if GNULIB_TEST_FPUTC
65 SIGNATURE_CHECK (GNULIB_NAMESPACE::fputc, int, (int, FILE *));
66 #endif
67
68 #if GNULIB_TEST_FPUTS
69 SIGNATURE_CHECK (GNULIB_NAMESPACE::fputs, int, (const char *, FILE *));
70 #endif
71
72 #if GNULIB_TEST_FREAD
73 SIGNATURE_CHECK (GNULIB_NAMESPACE::fread, size_t,
74                  (void *, size_t, size_t, FILE *));
75 #endif
76
77 #if GNULIB_TEST_FREOPEN
78 SIGNATURE_CHECK (GNULIB_NAMESPACE::freopen, FILE *,
79                  (const char *, const char *, FILE *));
80 #endif
81
82 #if GNULIB_TEST_FSCANF
83 SIGNATURE_CHECK (GNULIB_NAMESPACE::fscanf, int, (FILE *, const char *, ...));
84 #endif
85
86 #if GNULIB_TEST_FSEEK
87 SIGNATURE_CHECK (GNULIB_NAMESPACE::fseek, int, (FILE *, long, int));
88 #endif
89
90 #if GNULIB_TEST_FSEEKO
91 SIGNATURE_CHECK (GNULIB_NAMESPACE::fseeko, int, (FILE *, off_t, int));
92 #endif
93
94 #if GNULIB_TEST_FTELL
95 SIGNATURE_CHECK (GNULIB_NAMESPACE::ftell, long, (FILE *));
96 #endif
97
98 #if GNULIB_TEST_FTELLO
99 SIGNATURE_CHECK (GNULIB_NAMESPACE::ftello, off_t, (FILE *));
100 #endif
101
102 #if GNULIB_TEST_FWRITE
103 SIGNATURE_CHECK (GNULIB_NAMESPACE::fwrite, size_t,
104                  (const void *, size_t, size_t, FILE *));
105 #endif
106
107 #if GNULIB_TEST_GETC
108 SIGNATURE_CHECK (GNULIB_NAMESPACE::getc, int, (FILE *));
109 #endif
110
111 #if GNULIB_TEST_GETCHAR
112 SIGNATURE_CHECK (GNULIB_NAMESPACE::getchar, int, (void));
113 #endif
114
115 #if GNULIB_TEST_GETDELIM
116 SIGNATURE_CHECK (GNULIB_NAMESPACE::getdelim, ssize_t,
117                  (char **, size_t *, int, FILE *));
118 #endif
119
120 #if GNULIB_TEST_GETLINE
121 SIGNATURE_CHECK (GNULIB_NAMESPACE::getline, ssize_t,
122                  (char **, size_t *, FILE *));
123 #endif
124
125 /* Don't bother testing gets; it should never be used.  */
126
127 #if GNULIB_TEST_OBSTACK_PRINTF || GNULIB_TEST_OBSTACK_PRINTF_POSIX
128 SIGNATURE_CHECK (GNULIB_NAMESPACE::obstack_printf, int,
129                  (struct obstack *, const char *, ...));
130 SIGNATURE_CHECK (GNULIB_NAMESPACE::obstack_vprintf, int,
131                  (struct obstack *, const char *, va_list));
132 #endif
133
134 //SIGNATURE_CHECK (GNULIB_NAMESPACE::pclose, int, (FILE *));
135
136 #if GNULIB_TEST_PERROR
137 SIGNATURE_CHECK (GNULIB_NAMESPACE::perror, void, (const char *));
138 #endif
139
140 #if GNULIB_TEST_POPEN
141 SIGNATURE_CHECK (GNULIB_NAMESPACE::popen, FILE *,
142                  (const char *, const char *));
143 #endif
144
145 #if GNULIB_TEST_PRINTF_POSIX || GNULIB_TEST_PRINTF
146 SIGNATURE_CHECK (GNULIB_NAMESPACE::printf, int, (const char *, ...));
147 #endif
148
149 #if GNULIB_TEST_PUTC
150 SIGNATURE_CHECK (GNULIB_NAMESPACE::putc, int, (int, FILE *));
151 #endif
152
153 #if GNULIB_TEST_PUTCHAR
154 SIGNATURE_CHECK (GNULIB_NAMESPACE::putchar, int, (int));
155 #endif
156
157 #if GNULIB_TEST_PUTS
158 SIGNATURE_CHECK (GNULIB_NAMESPACE::puts, int, (const char *));
159 #endif
160
161 #if GNULIB_TEST_REMOVE
162 SIGNATURE_CHECK (GNULIB_NAMESPACE::remove, int, (const char *));
163 #endif
164
165 #if GNULIB_TEST_RENAME
166 SIGNATURE_CHECK (GNULIB_NAMESPACE::rename, int, (const char *, const char *));
167 #endif
168
169 #if GNULIB_TEST_RENAMEAT
170 SIGNATURE_CHECK (GNULIB_NAMESPACE::renameat, int,
171                  (int, char const *, int, char const *));
172 #endif
173
174 #if GNULIB_TEST_SCANF
175 SIGNATURE_CHECK (GNULIB_NAMESPACE::scanf, int, (const char *, ...));
176 #endif
177
178 #if GNULIB_TEST_SNPRINTF
179 SIGNATURE_CHECK (GNULIB_NAMESPACE::snprintf, int,
180                  (char *, size_t, const char *, ...));
181 #endif
182
183 #if GNULIB_TEST_SPRINTF_POSIX
184 SIGNATURE_CHECK (GNULIB_NAMESPACE::sprintf, int, (char *, const char *, ...));
185 #endif
186
187 #if GNULIB_TEST_TMPFILE
188 SIGNATURE_CHECK (GNULIB_NAMESPACE::tmpfile, FILE *, (void));
189 #endif
190
191 #if GNULIB_TEST_VASPRINTF
192 SIGNATURE_CHECK (GNULIB_NAMESPACE::asprintf, int,
193                  (char **, const char *, ...));
194 SIGNATURE_CHECK (GNULIB_NAMESPACE::vasprintf, int,
195                  (char **, const char *, va_list));
196 #endif
197
198 #if GNULIB_TEST_VDPRINTF
199 SIGNATURE_CHECK (GNULIB_NAMESPACE::vdprintf, int,
200                  (int, const char *, va_list));
201 #endif
202
203 #if GNULIB_TEST_VFPRINTF_POSIX || GNULIB_TEST_VFPRINTF
204 SIGNATURE_CHECK (GNULIB_NAMESPACE::vfprintf, int,
205                  (FILE *, const char *, va_list));
206 #endif
207
208 #if GNULIB_TEST_VFSCANF
209 SIGNATURE_CHECK (GNULIB_NAMESPACE::vfscanf, int,
210                  (FILE *, const char *, va_list));
211 #endif
212
213 #if GNULIB_TEST_VPRINTF_POSIX || GNULIB_TEST_VPRINTF
214 SIGNATURE_CHECK (GNULIB_NAMESPACE::vprintf, int, (const char *, va_list));
215 #endif
216
217 #if GNULIB_TEST_VSCANF
218 SIGNATURE_CHECK (GNULIB_NAMESPACE::vscanf, int, (const char *, va_list));
219 #endif
220
221 #if GNULIB_TEST_VSNPRINTF
222 SIGNATURE_CHECK (GNULIB_NAMESPACE::vsnprintf, int,
223                  (char *, size_t, const char *, va_list));
224 #endif
225
226 #if GNULIB_TEST_VSPRINTF_POSIX
227 SIGNATURE_CHECK (GNULIB_NAMESPACE::vsprintf, int,
228                  (char *, const char *, va_list));
229 #endif
230
231
232 int
233 main ()
234 {
235 }