e48d94cd0fa384498c918d5bbd58adf5c26360f7
[gnulib.git] / lib / stdio_.h
1 /* A GNU-like <stdio.h>.
2
3    Copyright (C) 2004, 2007 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 #if defined __need_FILE
20 /* Special invocation convention inside glibc header files.  */
21
22 #include @ABSOLUTE_STDIO_H@
23
24 #else
25 /* Normal invocation convention.  */
26 #ifndef _GL_STDIO_H
27 #define _GL_STDIO_H
28
29 #include @ABSOLUTE_STDIO_H@
30
31 #include <stdarg.h>
32 #include <stddef.h>
33
34
35 /* The definition of GL_LINK_WARNING is copied here.  */
36
37
38 #ifdef __cplusplus
39 extern "C" {
40 #endif
41
42
43 #if @GNULIB_SNPRINTF@
44 # if !@HAVE_DECL_SNPRINTF@
45 extern int snprintf (char *str, size_t size, const char *format, ...);
46 # endif
47 #elif defined GNULIB_POSIXCHECK
48 # undef snprintf
49 # define snprintf \
50     (GL_LINK_WARNING ("snprintf is unportable - " \
51                       "use gnulib module snprintf for portability"), \
52      snprintf)
53 #endif
54
55 #if @GNULIB_VSNPRINTF@
56 # if @REPLACE_VSNPRINTF@
57 #  define vsnprintf rpl_vsnprintf
58 # endif
59 # if @REPLACE_VSNPRINTF@ || !@HAVE_DECL_VSNPRINTF@
60 extern int vsnprintf (char *str, size_t size, const char *format, va_list args);
61 # endif
62 #elif defined GNULIB_POSIXCHECK
63 # undef vsnprintf
64 # define vsnprintf(b,s,f,a) \
65     (GL_LINK_WARNING ("vsnprintf is unportable - " \
66                       "use gnulib module vsnprintf for portability"), \
67      vsnprintf (b, s, f, a))
68 #endif
69
70
71 #ifdef __cplusplus
72 }
73 #endif
74
75 #endif /* _GL_STDIO_H */
76 #endif