Guile: Fix `x509-certificate-dn-oid' and related functions.
[gnutls.git] / lgl / stdio_.h
blob42bac02bdb1ba965856ba90c58f68236732a85ae
1 /* A GNU-like <stdio.h>.
3 Copyright (C) 2004, 2007 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 Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1, or (at your option)
8 any later version.
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 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, write to the Free Software Foundation,
17 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
19 #if defined __need_FILE || defined __need___FILE
20 /* Special invocation convention inside glibc header files. */
22 #@INCLUDE_NEXT@ @NEXT_STDIO_H@
24 #else
25 /* Normal invocation convention. */
27 #ifndef _GL_STDIO_H
29 /* The include_next requires a split double-inclusion guard. */
30 #@INCLUDE_NEXT@ @NEXT_STDIO_H@
32 #ifndef _GL_STDIO_H
33 #define _GL_STDIO_H
35 #include <stdarg.h>
36 #include <stddef.h>
38 #if (@GNULIB_FSEEKO@ && @REPLACE_FSEEKO@) \
39 || (@GNULIB_FTELLO@ && @REPLACE_FTELLO@) \
40 || (@GNULIB_GETDELIM@ && !@HAVE_DECL_GETDELIM@) \
41 || (@GNULIB_GETLINE@ && (!@HAVE_DECL_GETLINE@ || @REPLACE_GETLINE@))
42 /* Get off_t and ssize_t. */
43 # include <sys/types.h>
44 #endif
46 #ifndef __attribute__
47 /* This feature is available in gcc versions 2.5 and later. */
48 # if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5) || __STRICT_ANSI__
49 # define __attribute__(Spec) /* empty */
50 # endif
51 /* The __-protected variants of `format' and `printf' attributes
52 are accepted by gcc versions 2.6.4 (effectively 2.7) and later. */
53 # if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 7)
54 # define __format__ format
55 # define __printf__ printf
56 # endif
57 #endif
60 /* The definition of GL_LINK_WARNING is copied here. */
63 #ifdef __cplusplus
64 extern "C" {
65 #endif
68 #if @GNULIB_FPRINTF_POSIX@
69 # if @REPLACE_FPRINTF@
70 # define fprintf rpl_fprintf
71 extern int fprintf (FILE *fp, const char *format, ...)
72 __attribute__ ((__format__ (__printf__, 2, 3)));
73 # endif
74 #elif defined GNULIB_POSIXCHECK
75 # undef fprintf
76 # define fprintf \
77 (GL_LINK_WARNING ("fprintf is not always POSIX compliant - " \
78 "use gnulib module fprintf-posix for portable " \
79 "POSIX compliance"), \
80 fprintf)
81 #endif
83 #if @GNULIB_VFPRINTF_POSIX@
84 # if @REPLACE_VFPRINTF@
85 # define vfprintf rpl_vfprintf
86 extern int vfprintf (FILE *fp, const char *format, va_list args)
87 __attribute__ ((__format__ (__printf__, 2, 0)));
88 # endif
89 #elif defined GNULIB_POSIXCHECK
90 # undef vfprintf
91 # define vfprintf(s,f,a) \
92 (GL_LINK_WARNING ("vfprintf is not always POSIX compliant - " \
93 "use gnulib module vfprintf-posix for portable " \
94 "POSIX compliance"), \
95 vfprintf (s, f, a))
96 #endif
98 #if @GNULIB_PRINTF_POSIX@
99 # if @REPLACE_PRINTF@
100 /* Don't break __attribute__((format(printf,M,N))). */
101 # define printf __printf__
102 extern int printf (const char *format, ...)
103 __attribute__ ((__format__ (__printf__, 1, 2)));
104 # endif
105 #elif defined GNULIB_POSIXCHECK
106 # undef printf
107 # define printf \
108 (GL_LINK_WARNING ("printf is not always POSIX compliant - " \
109 "use gnulib module printf-posix for portable " \
110 "POSIX compliance"), \
111 printf)
112 /* Don't break __attribute__((format(printf,M,N))). */
113 # define format(kind,m,n) format (__##kind##__, m, n)
114 # define __format__(kind,m,n) __format__ (__##kind##__, m, n)
115 # define ____printf____ __printf__
116 # define ____scanf____ __scanf__
117 # define ____strftime____ __strftime__
118 # define ____strfmon____ __strfmon__
119 #endif
121 #if @GNULIB_VPRINTF_POSIX@
122 # if @REPLACE_VPRINTF@
123 # define vprintf rpl_vprintf
124 extern int vprintf (const char *format, va_list args)
125 __attribute__ ((__format__ (__printf__, 1, 0)));
126 # endif
127 #elif defined GNULIB_POSIXCHECK
128 # undef vprintf
129 # define vprintf(f,a) \
130 (GL_LINK_WARNING ("vprintf is not always POSIX compliant - " \
131 "use gnulib module vprintf-posix for portable " \
132 "POSIX compliance"), \
133 vprintf (f, a))
134 #endif
136 #if @GNULIB_SNPRINTF@
137 # if @REPLACE_SNPRINTF@
138 # define snprintf rpl_snprintf
139 # endif
140 # if @REPLACE_SNPRINTF@ || !@HAVE_DECL_SNPRINTF@
141 extern int snprintf (char *str, size_t size, const char *format, ...)
142 __attribute__ ((__format__ (__printf__, 3, 4)));
143 # endif
144 #elif defined GNULIB_POSIXCHECK
145 # undef snprintf
146 # define snprintf \
147 (GL_LINK_WARNING ("snprintf is unportable - " \
148 "use gnulib module snprintf for portability"), \
149 snprintf)
150 #endif
152 #if @GNULIB_VSNPRINTF@
153 # if @REPLACE_VSNPRINTF@
154 # define vsnprintf rpl_vsnprintf
155 # endif
156 # if @REPLACE_VSNPRINTF@ || !@HAVE_DECL_VSNPRINTF@
157 extern int vsnprintf (char *str, size_t size, const char *format, va_list args)
158 __attribute__ ((__format__ (__printf__, 3, 0)));
159 # endif
160 #elif defined GNULIB_POSIXCHECK
161 # undef vsnprintf
162 # define vsnprintf(b,s,f,a) \
163 (GL_LINK_WARNING ("vsnprintf is unportable - " \
164 "use gnulib module vsnprintf for portability"), \
165 vsnprintf (b, s, f, a))
166 #endif
168 #if @GNULIB_SPRINTF_POSIX@
169 # if @REPLACE_SPRINTF@
170 # define sprintf rpl_sprintf
171 extern int sprintf (char *str, const char *format, ...)
172 __attribute__ ((__format__ (__printf__, 2, 3)));
173 # endif
174 #elif defined GNULIB_POSIXCHECK
175 # undef sprintf
176 # define sprintf \
177 (GL_LINK_WARNING ("sprintf is not always POSIX compliant - " \
178 "use gnulib module sprintf-posix for portable " \
179 "POSIX compliance"), \
180 sprintf)
181 #endif
183 #if @GNULIB_VSPRINTF_POSIX@
184 # if @REPLACE_VSPRINTF@
185 # define vsprintf rpl_vsprintf
186 extern int vsprintf (char *str, const char *format, va_list args)
187 __attribute__ ((__format__ (__printf__, 2, 0)));
188 # endif
189 #elif defined GNULIB_POSIXCHECK
190 # undef vsprintf
191 # define vsprintf(b,f,a) \
192 (GL_LINK_WARNING ("vsprintf is not always POSIX compliant - " \
193 "use gnulib module vsprintf-posix for portable " \
194 "POSIX compliance"), \
195 vsprintf (b, f, a))
196 #endif
198 #if @GNULIB_VASPRINTF@
199 # if @REPLACE_VASPRINTF@
200 # define asprintf rpl_asprintf
201 # define vasprintf rpl_vasprintf
202 # endif
203 # if @REPLACE_VASPRINTF@ || !@HAVE_VASPRINTF@
204 /* Write formatted output to a string dynamically allocated with malloc().
205 If the memory allocation succeeds, store the address of the string in
206 *RESULT and return the number of resulting bytes, excluding the trailing
207 NUL. Upon memory allocation error, or some other error, return -1. */
208 extern int asprintf (char **result, const char *format, ...)
209 __attribute__ ((__format__ (__printf__, 2, 3)));
210 extern int vasprintf (char **result, const char *format, va_list args)
211 __attribute__ ((__format__ (__printf__, 2, 0)));
212 # endif
213 #endif
215 #if @GNULIB_FSEEKO@
216 # if @REPLACE_FSEEKO@
217 /* Provide fseek, fseeko functions that are aware of a preceding
218 fflush(), and which detect pipes. */
219 # define fseeko rpl_fseeko
220 extern int fseeko (FILE *fp, off_t offset, int whence);
221 # define fseek(fp, offset, whence) fseeko (fp, (off_t)(offset), whence)
222 # endif
223 #elif defined GNULIB_POSIXCHECK
224 # undef fseeko
225 # define fseeko(f,o,w) \
226 (GL_LINK_WARNING ("fseeko is unportable - " \
227 "use gnulib module fseeko for portability"), \
228 fseeko (f, o, w))
229 #endif
231 #if @GNULIB_FSEEK@ && @REPLACE_FSEEK@
232 extern int rpl_fseek (FILE *fp, long offset, int whence);
233 # undef fseek
234 # if defined GNULIB_POSIXCHECK
235 # define fseek(f,o,w) \
236 (GL_LINK_WARNING ("fseek cannot handle files larger than 4 GB " \
237 "on 32-bit platforms - " \
238 "use fseeko function for handling of large files"), \
239 rpl_fseek (f, o, w))
240 # else
241 # define fseek rpl_fseek
242 # endif
243 #elif defined GNULIB_POSIXCHECK
244 # ifndef fseek
245 # define fseek(f,o,w) \
246 (GL_LINK_WARNING ("fseek cannot handle files larger than 4 GB " \
247 "on 32-bit platforms - " \
248 "use fseeko function for handling of large files"), \
249 fseek (f, o, w))
250 # endif
251 #endif
253 #if @GNULIB_FTELLO@
254 # if @REPLACE_FTELLO@
255 # define ftello rpl_ftello
256 extern off_t ftello (FILE *fp);
257 # define ftell(fp) ftello (fp)
258 # endif
259 #elif defined GNULIB_POSIXCHECK
260 # undef ftello
261 # define ftello(f) \
262 (GL_LINK_WARNING ("ftello is unportable - " \
263 "use gnulib module ftello for portability"), \
264 ftello (f))
265 #endif
267 #if @GNULIB_FTELL@ && @REPLACE_FTELL@
268 extern long rpl_ftell (FILE *fp);
269 # undef ftell
270 # if GNULIB_POSIXCHECK
271 # define ftell(f) \
272 (GL_LINK_WARNING ("ftell cannot handle files larger than 4 GB " \
273 "on 32-bit platforms - " \
274 "use ftello function for handling of large files"), \
275 rpl_ftell (f))
276 # else
277 # define ftell rpl_ftell
278 # endif
279 #elif defined GNULIB_POSIXCHECK
280 # ifndef ftell
281 # define ftell(f) \
282 (GL_LINK_WARNING ("ftell cannot handle files larger than 4 GB " \
283 "on 32-bit platforms - " \
284 "use ftello function for handling of large files"), \
285 ftell (f))
286 # endif
287 #endif
289 #if @GNULIB_FFLUSH@
290 # if @REPLACE_FFLUSH@
291 # define fflush rpl_fflush
292 /* Flush all pending data on STREAM according to POSIX rules. Both
293 output and seekable input streams are supported.
294 Note! LOSS OF DATA can occur if fflush is applied on an input stream
295 that is _not_seekable_ or on an update stream that is _not_seekable_
296 and in which the most recent operation was input. Seekability can
297 be tested with lseek(fileno(fp),0,SEEK_CUR). */
298 extern int fflush (FILE *gl_stream);
299 # endif
300 #elif defined GNULIB_POSIXCHECK
301 # undef fflush
302 # define fflush(f) \
303 (GL_LINK_WARNING ("fflush is not always POSIX compliant - " \
304 "use gnulib module fflush for portable " \
305 "POSIX compliance"), \
306 fflush (f))
307 #endif
309 #if @GNULIB_GETDELIM@
310 # if !@HAVE_DECL_GETDELIM@
311 /* Read up to (and including) a DELIMITER from FP into *LINEPTR (and
312 NUL-terminate it). *LINEPTR is a pointer returned from malloc (or
313 NULL), pointing to *N characters of space. It is realloc'ed as
314 necessary. Returns the number of characters read (not including
315 the null terminator), or -1 on error or EOF. */
316 extern ssize_t getdelim (char **, size_t *, int delim, FILE *);
317 # endif
318 #elif defined GNULIB_POSIXCHECK
319 # undef getdelim
320 # define getdelim(l, s, d, f) \
321 (GL_LINK_WARNING ("getdelim is unportable - " \
322 "use gnulib module getdelim for portability"), \
323 getdelim (l, s, d, f))
324 #endif
326 #if @GNULIB_GETLINE@
327 # if @REPLACE_GETLINE@
328 # undef getline
329 # define getline rpl_getline
330 # endif
331 # if !@HAVE_DECL_GETLINE@ || @REPLACE_GETLINE@
332 /* Read up to (and including) a newline from FP into *LINEPTR (and
333 NUL-terminate it). *LINEPTR is a pointer returned from malloc (or
334 NULL), pointing to *N characters of space. It is realloc'ed as
335 necessary. Returns the number of characters read (not including
336 the null terminator), or -1 on error or EOF. */
337 extern ssize_t getline (char **, size_t *, FILE *);
338 # endif
339 #elif defined GNULIB_POSIXCHECK
340 # undef getline
341 # define getline(l, s, f) \
342 (GL_LINK_WARNING ("getline is unportable - " \
343 "use gnulib module getline for portability"), \
344 getline (l, s, f))
345 #endif
347 #ifdef __cplusplus
349 #endif
351 #endif /* _GL_STDIO_H */
352 #endif /* _GL_STDIO_H */
353 #endif