2 * Copyright (c) 1990, 1993
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. All advertising materials mentioning features or use of this software
17 * must display the following acknowledgement:
18 * This product includes software developed by the University of
19 * California, Berkeley and its contributors.
20 * 4. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * @(#)stdio.h 8.5 (Berkeley) 4/29/95
37 * $FreeBSD: src/include/stdio.h,v 1.24.2.5 2002/11/09 08:07:20 imp Exp $
38 * $DragonFly: src/include/stdio.h,v 1.12 2007/04/17 22:25:45 corecode Exp $
44 #include <sys/cdefs.h>
45 #ifndef _SYS_STDINT_H_
46 #include <sys/stdint.h>
48 #ifndef _MACHINE_STDARG_H_
49 #include <machine/stdarg.h>
52 #ifndef _SIZE_T_DECLARED
53 #define _SIZE_T_DECLARED
54 typedef __size_t
size_t;
61 typedef __off_t
fpos_t;
64 * stdio state variables.
66 * The following always hold:
68 * if (_flags&(__SLBF|__SWR)) == (__SLBF|__SWR),
69 * _lbfsize is -_bf._size, else _lbfsize is 0
70 * if _flags&__SRD, _w is 0
71 * if _flags&__SWR, _r is 0
73 * This ensures that the getc and putc macros (or inline functions) never
74 * try to write or read from a file that is in `read' or `write' mode.
75 * (Moreover, they can, and do, automatically switch from read mode to
76 * write mode, and back, on "r+" and "w+" files.)
78 * _lbfsize is used only to make the inline line-buffered output stream
79 * code as compact as possible.
81 * WARNING: Do not change the order of the fields in __FILE_public!
83 typedef struct __FILE
FILE;
85 struct __FILE_public
{
86 unsigned char *_p
; /* current position in (some) buffer */
87 int _flags
; /* flags, below; this FILE is free if 0 */
88 int _fileno
; /* fileno, if Unix descriptor, else -1 */
89 __ssize_t _r
; /* read space left for getc() */
90 __ssize_t _w
; /* write space left for putc() */
91 __ssize_t _lbfsize
; /* 0 or -_bf._size, for inline putc */
95 extern FILE *__stdinp
, *__stdoutp
, *__stderrp
;
98 #define __SLBF 0x0001 /* line buffered */
99 #define __SNBF 0x0002 /* unbuffered */
100 #define __SRD 0x0004 /* OK to read */
101 #define __SWR 0x0008 /* OK to write */
102 /* RD and WR are never simultaneously asserted */
103 #define __SRW 0x0010 /* open for reading & writing */
104 #define __SEOF 0x0020 /* found EOF */
105 #define __SERR 0x0040 /* found error */
106 #define __SMBF 0x0080 /* _buf is from malloc */
107 #define __SAPP 0x0100 /* fdopen()ed in append mode */
108 #define __SSTR 0x0200 /* this is an sprintf/snprintf string */
109 #define __SOPT 0x0400 /* do fseek() optimization */
110 #define __SNPT 0x0800 /* do not do fseek() optimization */
111 #define __SOFF 0x1000 /* set iff _offset is in fact correct */
112 #define __SMOD 0x2000 /* true => fgetln modified _p text */
113 #define __SALC 0x4000 /* allocate string space dynamically */
116 * The following three definitions are for ANSI C, which took them
117 * from System V, which brilliantly took internal interface macros and
118 * made them official arguments to setvbuf(), without renaming them.
119 * Hence, these ugly _IOxxx names are *supposed* to appear in user code.
121 * Although numbered as their counterparts above, the implementation
122 * does not rely on this.
124 #define _IOFBF 0 /* setvbuf should set fully buffered */
125 #define _IOLBF 1 /* setvbuf should set line buffered */
126 #define _IONBF 2 /* setvbuf should set unbuffered */
128 #define BUFSIZ 1024 /* size of buffer used by setbuf */
132 * FOPEN_MAX is a minimum maximum, and is the number of streams that
133 * stdio can provide without attempting to allocate further resources
134 * (which could fail). Do not use this for anything.
136 /* must be == _POSIX_STREAM_MAX <limits.h> */
137 #define FOPEN_MAX 20 /* must be <= OPEN_MAX <sys/syslimits.h> */
138 #define FILENAME_MAX 1024 /* must be <= PATH_MAX <sys/syslimits.h> */
140 /* System V/ANSI C; this is the wrong way to do this, do *not* use these. */
142 #define P_tmpdir "/tmp/"
144 #define L_tmpnam 1024 /* XXX must be == PATH_MAX */
145 #define TMP_MAX 308915776
148 #define SEEK_SET 0 /* set file offset to offset */
151 #define SEEK_CUR 1 /* set file offset to current plus offset */
154 #define SEEK_END 2 /* set file offset to EOF plus offset */
157 #define stdin (__stdinp)
158 #define stdout (__stdoutp)
159 #define stderr (__stderrp)
162 * Functions defined in ANSI C standard.
165 void clearerr(FILE *);
168 int feof_unlocked(FILE *);
170 int ferror_unlocked(FILE *);
173 int fgetpos(FILE *, fpos_t *);
174 char *fgets(char *, int, FILE *);
175 FILE *fopen(const char *, const char *);
176 int fprintf(FILE *, const char *, ...);
177 int fputc(int, FILE *);
178 int fputs(const char *, FILE *);
179 size_t fread(void *, size_t, size_t, FILE *);
180 FILE *freopen(const char *, const char *, FILE *);
181 int fscanf(FILE *, const char *, ...);
182 int fseek(FILE *, long, int);
183 int fsetpos(FILE *, const fpos_t *);
185 size_t fwrite(const void *, size_t, size_t, FILE *);
187 int getc_unlocked(FILE *);
189 int getchar_unlocked(void);
191 #if !defined(_ANSI_SOURCE) && !defined(_POSIX_SOURCE)
192 extern __const
int sys_nerr
; /* perror(3) external variables */
193 extern __const
char *__const sys_errlist
[];
195 void perror(const char *);
196 int printf(const char *, ...);
197 int putc(int, FILE *);
198 int putc_unlocked(int, FILE *);
200 int putchar_unlocked(int);
201 int puts(const char *);
202 int remove(const char *);
203 int rename(const char *, const char *);
205 int scanf(const char *, ...);
206 void setbuf(FILE *, char *);
207 int setvbuf(FILE *, char *, int, size_t);
208 int sprintf(char *, const char *, ...);
209 int sscanf(const char *, const char *, ...);
211 char *tmpnam(char *);
212 int ungetc(int, FILE *);
213 int vfprintf(FILE *, const char *, __va_list
);
214 int vprintf(const char *, __va_list
);
215 int vsprintf(char *, const char *, __va_list
);
219 * Functions defined in POSIX 1003.1.
222 /* size for cuserid(3); UT_NAMESIZE + 1, see <utmp.h> */
225 #define L_ctermid 1024 /* size for ctermid(3); PATH_MAX */
228 char *ctermid(char *);
229 FILE *fdopen(int, const char *);
231 int fileno_unlocked(FILE *);
232 int ftrylockfile(FILE *);
233 void flockfile(FILE *);
234 void funlockfile(FILE *);
236 #endif /* not ANSI */
239 * Portability hacks. See <sys/types.h>.
241 #if !defined (_ANSI_SOURCE) && !defined(_POSIX_SOURCE)
243 #ifndef _FTRUNCATE_DECLARED
244 #define _FTRUNCATE_DECLARED
245 int ftruncate(int, __off_t
);
247 #ifndef _LSEEK_DECLARED
248 #define _LSEEK_DECLARED
249 __off_t
lseek(int, __off_t
, int);
251 #ifndef _MMAP_DECLARED
252 #define _MMAP_DECLARED
253 void *mmap(void *, size_t, int, int, int, __off_t
);
255 #ifndef _TRUNCATE_DECLARED
256 #define _TRUNCATE_DECLARED
257 int truncate(const char *, __off_t
);
260 #endif /* !_ANSI_SOURCE && !_POSIX_SOURCE */
263 * Routines that are purely local.
265 #if !defined (_ANSI_SOURCE) && !defined(_POSIX_SOURCE)
267 int asprintf(char **, const char *, ...) __printflike(2, 3);
268 char *ctermid_r(char *);
269 void *fcookie(FILE *);
270 char *fgetln(FILE *, size_t *);
271 #if __GNUC__ == 2 && __GNUC_MINOR__ >= 7 || __GNUC__ >= 3
272 #define __ATTR_FORMAT_ARG __attribute__((__format_arg__(2)))
274 #define __ATTR_FORMAT_ARG
276 const char *fmtcheck(const char *, const char *) __ATTR_FORMAT_ARG
;
277 __ssize_t
__fpending(FILE *);
279 int fseeko(FILE *, __off_t
, int);
280 __off_t
ftello(FILE *);
283 FILE *popen(const char *, const char *);
284 int putw(int, FILE *);
285 void setbuffer(FILE *, char *, int);
286 int setlinebuf(FILE *);
287 char *tempnam(const char *, const char *);
288 int snprintf(char *, size_t, const char *, ...) __printflike(3, 4);
289 int vasprintf(char **, const char *, __va_list
)
291 int vsnprintf (char *, size_t, const char *, __va_list
)
293 int vscanf(const char *, __va_list
) __scanflike(1, 0);
294 int vsscanf(const char *, const char *, __va_list
)
299 * This is a #define because the function is used internally and
300 * (unlike vfscanf) the name __vfscanf is guaranteed not to collide
301 * with a user function when _ANSI_SOURCE or _POSIX_SOURCE is defined.
303 #define vfscanf __vfscanf
306 * Stdio function-access interface.
309 FILE *funopen(const void *,
310 int (*)(void *, char *, int),
311 int (*)(void *, const char *, int),
312 fpos_t (*)(void *, fpos_t, int),
315 #define fropen(cookie, fn) funopen(cookie, fn, 0, 0, 0)
316 #define fwopen(cookie, fn) funopen(cookie, 0, fn, 0, 0)
317 #endif /* !_ANSI_SOURCE && !_POSIX_SOURCE */
320 * Functions internal to the implementation.
324 int __vfscanf(FILE *, const char *, __va_list
);
325 int __svfscanf(FILE *, const char *, __va_list
);
326 int __swbuf(int, FILE *);
330 * The __sfoo functions are here so that we can
331 * define real function versions in the C library.
336 struct __FILE_public
*_p
= (struct __FILE_public
*)_fp
;
339 return (__srget(_fp
));
345 __sputc(int _c
, FILE *_fp
)
347 struct __FILE_public
*_p
= (struct __FILE_public
*)_fp
;
349 if (--_p
->_w
>= 0 || (_p
->_w
>= _p
->_lbfsize
&& _c
!= '\n'))
350 return (*_p
->_p
++ = _c
);
352 return (__swbuf(_c
, _fp
));
358 struct __FILE_public
*_p
= (struct __FILE_public
*)_fp
;
360 return ((_p
->_flags
& __SEOF
) != 0);
366 struct __FILE_public
*_p
= (struct __FILE_public
*)_fp
;
368 return ((_p
->_flags
& __SERR
) != 0);
372 __sclearerr(FILE *_fp
)
374 struct __FILE_public
*_p
= (struct __FILE_public
*)_fp
;
376 _p
->_flags
&= ~(__SERR
|__SEOF
);
382 struct __FILE_public
*_p
= (struct __FILE_public
*)_fp
;
384 return (_p
->_fileno
);
388 * See ISO/IEC 9945-1 ANSI/IEEE Std 1003.1 Second Edition 1996-07-12
389 * B.8.2.7 for the rationale behind the *_unlocked() macros.
391 #define feof_unlocked(p) __sfeof(p)
392 #define ferror_unlocked(p) __sferror(p)
393 #define clearerr_unlocked(p) __sclearerr(p)
396 #define fileno_unlocked(p) __sfileno(p)
399 #define getc_unlocked(fp) __sgetc(fp)
400 #define putc_unlocked(x, fp) __sputc(x, fp)
402 #define getchar_unlocked() getc_unlocked(stdin)
403 #define putchar_unlocked(x) putc_unlocked(x, stdout)
405 #endif /* !_STDIO_H_ */