* sysdeps/ia64/fpu/fraiseexcpt.c (feraiseexcept): Don't raise overflow
[glibc/pb-stable.git] / libio / stdio.h
blob8e6694a6b3f9a453367a29e4b11bc2edc0c34ac7
1 /* Define ISO C stdio on top of C++ iostreams.
2 Copyright (C) 1991,1994-2004,2005,2006,2007 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library 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 GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
21 * ISO C99 Standard: 7.19 Input/output <stdio.h>
24 #ifndef _STDIO_H
26 #if !defined __need_FILE && !defined __need___FILE
27 # define _STDIO_H 1
28 # include <features.h>
30 __BEGIN_DECLS
32 # define __need_size_t
33 # define __need_NULL
34 # include <stddef.h>
36 # include <bits/types.h>
37 # define __need_FILE
38 # define __need___FILE
39 #endif /* Don't need FILE. */
42 #if !defined __FILE_defined && defined __need_FILE
44 /* Define outside of namespace so the C++ is happy. */
45 struct _IO_FILE;
47 __BEGIN_NAMESPACE_STD
48 /* The opaque type of streams. This is the definition used elsewhere. */
49 typedef struct _IO_FILE FILE;
50 __END_NAMESPACE_STD
51 #if defined __USE_LARGEFILE64 || defined __USE_SVID || defined __USE_POSIX \
52 || defined __USE_BSD || defined __USE_ISOC99 || defined __USE_XOPEN \
53 || defined __USE_POSIX2
54 __USING_NAMESPACE_STD(FILE)
55 #endif
57 # define __FILE_defined 1
58 #endif /* FILE not defined. */
59 #undef __need_FILE
62 #if !defined ____FILE_defined && defined __need___FILE
64 /* The opaque type of streams. This is the definition used elsewhere. */
65 typedef struct _IO_FILE __FILE;
67 # define ____FILE_defined 1
68 #endif /* __FILE not defined. */
69 #undef __need___FILE
72 #ifdef _STDIO_H
73 #define _STDIO_USES_IOSTREAM
75 #include <libio.h>
77 #ifdef __USE_XOPEN
78 # ifdef __GNUC__
79 # ifndef _VA_LIST_DEFINED
80 typedef _G_va_list va_list;
81 # define _VA_LIST_DEFINED
82 # endif
83 # else
84 # include <stdarg.h>
85 # endif
86 #endif
88 /* The type of the second argument to `fgetpos' and `fsetpos'. */
89 __BEGIN_NAMESPACE_STD
90 #ifndef __USE_FILE_OFFSET64
91 typedef _G_fpos_t fpos_t;
92 #else
93 typedef _G_fpos64_t fpos_t;
94 #endif
95 __END_NAMESPACE_STD
96 #ifdef __USE_LARGEFILE64
97 typedef _G_fpos64_t fpos64_t;
98 #endif
100 /* The possibilities for the third argument to `setvbuf'. */
101 #define _IOFBF 0 /* Fully buffered. */
102 #define _IOLBF 1 /* Line buffered. */
103 #define _IONBF 2 /* No buffering. */
106 /* Default buffer size. */
107 #ifndef BUFSIZ
108 # define BUFSIZ _IO_BUFSIZ
109 #endif
112 /* End of file character.
113 Some things throughout the library rely on this being -1. */
114 #ifndef EOF
115 # define EOF (-1)
116 #endif
119 /* The possibilities for the third argument to `fseek'.
120 These values should not be changed. */
121 #define SEEK_SET 0 /* Seek from beginning of file. */
122 #define SEEK_CUR 1 /* Seek from current position. */
123 #define SEEK_END 2 /* Seek from end of file. */
126 #if defined __USE_SVID || defined __USE_XOPEN
127 /* Default path prefix for `tempnam' and `tmpnam'. */
128 # define P_tmpdir "/tmp"
129 #endif
132 /* Get the values:
133 L_tmpnam How long an array of chars must be to be passed to `tmpnam'.
134 TMP_MAX The minimum number of unique filenames generated by tmpnam
135 (and tempnam when it uses tmpnam's name space),
136 or tempnam (the two are separate).
137 L_ctermid How long an array to pass to `ctermid'.
138 L_cuserid How long an array to pass to `cuserid'.
139 FOPEN_MAX Minimum number of files that can be open at once.
140 FILENAME_MAX Maximum length of a filename. */
141 #include <bits/stdio_lim.h>
144 /* Standard streams. */
145 extern struct _IO_FILE *stdin; /* Standard input stream. */
146 extern struct _IO_FILE *stdout; /* Standard output stream. */
147 extern struct _IO_FILE *stderr; /* Standard error output stream. */
148 /* C89/C99 say they're macros. Make them happy. */
149 #define stdin stdin
150 #define stdout stdout
151 #define stderr stderr
153 __BEGIN_NAMESPACE_STD
154 /* Remove file FILENAME. */
155 extern int remove (__const char *__filename) __THROW;
156 /* Rename file OLD to NEW. */
157 extern int rename (__const char *__old, __const char *__new) __THROW;
158 __END_NAMESPACE_STD
160 #ifdef __USE_ATFILE
161 /* Rename file OLD relative to OLDFD to NEW relative to NEWFD. */
162 extern int renameat (int __oldfd, __const char *__old, int __newfd,
163 __const char *__new) __THROW;
164 #endif
166 __BEGIN_NAMESPACE_STD
167 /* Create a temporary file and open it read/write.
169 This function is a possible cancellation points and therefore not
170 marked with __THROW. */
171 #ifndef __USE_FILE_OFFSET64
172 extern FILE *tmpfile (void) __wur;
173 #else
174 # ifdef __REDIRECT
175 extern FILE *__REDIRECT (tmpfile, (void), tmpfile64) __wur;
176 # else
177 # define tmpfile tmpfile64
178 # endif
179 #endif
181 #ifdef __USE_LARGEFILE64
182 extern FILE *tmpfile64 (void) __wur;
183 #endif
185 /* Generate a temporary filename. */
186 extern char *tmpnam (char *__s) __THROW __wur;
187 __END_NAMESPACE_STD
189 #ifdef __USE_MISC
190 /* This is the reentrant variant of `tmpnam'. The only difference is
191 that it does not allow S to be NULL. */
192 extern char *tmpnam_r (char *__s) __THROW __wur;
193 #endif
196 #if defined __USE_SVID || defined __USE_XOPEN
197 /* Generate a unique temporary filename using up to five characters of PFX
198 if it is not NULL. The directory to put this file in is searched for
199 as follows: First the environment variable "TMPDIR" is checked.
200 If it contains the name of a writable directory, that directory is used.
201 If not and if DIR is not NULL, that value is checked. If that fails,
202 P_tmpdir is tried and finally "/tmp". The storage for the filename
203 is allocated by `malloc'. */
204 extern char *tempnam (__const char *__dir, __const char *__pfx)
205 __THROW __attribute_malloc__ __wur;
206 #endif
209 __BEGIN_NAMESPACE_STD
210 /* Close STREAM.
212 This function is a possible cancellation point and therefore not
213 marked with __THROW. */
214 extern int fclose (FILE *__stream);
215 /* Flush STREAM, or all streams if STREAM is NULL.
217 This function is a possible cancellation point and therefore not
218 marked with __THROW. */
219 extern int fflush (FILE *__stream);
220 __END_NAMESPACE_STD
222 #ifdef __USE_MISC
223 /* Faster versions when locking is not required.
225 This function is not part of POSIX and therefore no official
226 cancellation point. But due to similarity with an POSIX interface
227 or due to the implementation it is a cancellation point and
228 therefore not marked with __THROW. */
229 extern int fflush_unlocked (FILE *__stream);
230 #endif
232 #ifdef __USE_GNU
233 /* Close all streams.
235 This function is not part of POSIX and therefore no official
236 cancellation point. But due to similarity with an POSIX interface
237 or due to the implementation it is a cancellation point and
238 therefore not marked with __THROW. */
239 extern int fcloseall (void);
240 #endif
243 __BEGIN_NAMESPACE_STD
244 #ifndef __USE_FILE_OFFSET64
245 /* Open a file and create a new stream for it.
247 This function is a possible cancellation point and therefore not
248 marked with __THROW. */
249 extern FILE *fopen (__const char *__restrict __filename,
250 __const char *__restrict __modes) __wur;
251 /* Open a file, replacing an existing stream with it.
253 This function is a possible cancellation point and therefore not
254 marked with __THROW. */
255 extern FILE *freopen (__const char *__restrict __filename,
256 __const char *__restrict __modes,
257 FILE *__restrict __stream) __wur;
258 #else
259 # ifdef __REDIRECT
260 extern FILE *__REDIRECT (fopen, (__const char *__restrict __filename,
261 __const char *__restrict __modes), fopen64)
262 __wur;
263 extern FILE *__REDIRECT (freopen, (__const char *__restrict __filename,
264 __const char *__restrict __modes,
265 FILE *__restrict __stream), freopen64)
266 __wur;
267 # else
268 # define fopen fopen64
269 # define freopen freopen64
270 # endif
271 #endif
272 __END_NAMESPACE_STD
273 #ifdef __USE_LARGEFILE64
274 extern FILE *fopen64 (__const char *__restrict __filename,
275 __const char *__restrict __modes) __wur;
276 extern FILE *freopen64 (__const char *__restrict __filename,
277 __const char *__restrict __modes,
278 FILE *__restrict __stream) __wur;
279 #endif
281 #ifdef __USE_POSIX
282 /* Create a new stream that refers to an existing system file descriptor. */
283 extern FILE *fdopen (int __fd, __const char *__modes) __THROW __wur;
284 #endif
286 #ifdef __USE_GNU
287 /* Create a new stream that refers to the given magic cookie,
288 and uses the given functions for input and output. */
289 extern FILE *fopencookie (void *__restrict __magic_cookie,
290 __const char *__restrict __modes,
291 _IO_cookie_io_functions_t __io_funcs) __THROW __wur;
293 /* Create a new stream that refers to a memory buffer. */
294 extern FILE *fmemopen (void *__s, size_t __len, __const char *__modes)
295 __THROW __wur;
297 /* Open a stream that writes into a malloc'd buffer that is expanded as
298 necessary. *BUFLOC and *SIZELOC are updated with the buffer's location
299 and the number of characters written on fflush or fclose. */
300 extern FILE *open_memstream (char **__bufloc, size_t *__sizeloc) __THROW __wur;
301 #endif
304 __BEGIN_NAMESPACE_STD
305 /* If BUF is NULL, make STREAM unbuffered.
306 Else make it use buffer BUF, of size BUFSIZ. */
307 extern void setbuf (FILE *__restrict __stream, char *__restrict __buf) __THROW;
308 /* Make STREAM use buffering mode MODE.
309 If BUF is not NULL, use N bytes of it for buffering;
310 else allocate an internal buffer N bytes long. */
311 extern int setvbuf (FILE *__restrict __stream, char *__restrict __buf,
312 int __modes, size_t __n) __THROW;
313 __END_NAMESPACE_STD
315 #ifdef __USE_BSD
316 /* If BUF is NULL, make STREAM unbuffered.
317 Else make it use SIZE bytes of BUF for buffering. */
318 extern void setbuffer (FILE *__restrict __stream, char *__restrict __buf,
319 size_t __size) __THROW;
321 /* Make STREAM line-buffered. */
322 extern void setlinebuf (FILE *__stream) __THROW;
323 #endif
326 __BEGIN_NAMESPACE_STD
327 /* Write formatted output to STREAM.
329 This function is a possible cancellation point and therefore not
330 marked with __THROW. */
331 extern int fprintf (FILE *__restrict __stream,
332 __const char *__restrict __format, ...);
333 /* Write formatted output to stdout.
335 This function is a possible cancellation point and therefore not
336 marked with __THROW. */
337 extern int printf (__const char *__restrict __format, ...);
338 /* Write formatted output to S. */
339 extern int sprintf (char *__restrict __s,
340 __const char *__restrict __format, ...) __THROW;
342 /* Write formatted output to S from argument list ARG.
344 This function is a possible cancellation point and therefore not
345 marked with __THROW. */
346 extern int vfprintf (FILE *__restrict __s, __const char *__restrict __format,
347 _G_va_list __arg);
348 /* Write formatted output to stdout from argument list ARG.
350 This function is a possible cancellation point and therefore not
351 marked with __THROW. */
352 extern int vprintf (__const char *__restrict __format, _G_va_list __arg);
353 /* Write formatted output to S from argument list ARG. */
354 extern int vsprintf (char *__restrict __s, __const char *__restrict __format,
355 _G_va_list __arg) __THROW;
356 __END_NAMESPACE_STD
358 #if defined __USE_BSD || defined __USE_ISOC99 || defined __USE_UNIX98
359 __BEGIN_NAMESPACE_C99
360 /* Maximum chars of output to write in MAXLEN. */
361 extern int snprintf (char *__restrict __s, size_t __maxlen,
362 __const char *__restrict __format, ...)
363 __THROW __attribute__ ((__format__ (__printf__, 3, 4)));
365 extern int vsnprintf (char *__restrict __s, size_t __maxlen,
366 __const char *__restrict __format, _G_va_list __arg)
367 __THROW __attribute__ ((__format__ (__printf__, 3, 0)));
368 __END_NAMESPACE_C99
369 #endif
371 #ifdef __USE_GNU
372 /* Write formatted output to a string dynamically allocated with `malloc'.
373 Store the address of the string in *PTR. */
374 extern int vasprintf (char **__restrict __ptr, __const char *__restrict __f,
375 _G_va_list __arg)
376 __THROW __attribute__ ((__format__ (__printf__, 2, 0))) __wur;
377 extern int __asprintf (char **__restrict __ptr,
378 __const char *__restrict __fmt, ...)
379 __THROW __attribute__ ((__format__ (__printf__, 2, 3))) __wur;
380 extern int asprintf (char **__restrict __ptr,
381 __const char *__restrict __fmt, ...)
382 __THROW __attribute__ ((__format__ (__printf__, 2, 3))) __wur;
384 /* Write formatted output to a file descriptor.
386 These functions are not part of POSIX and therefore no official
387 cancellation point. But due to similarity with an POSIX interface
388 or due to the implementation they are cancellation points and
389 therefore not marked with __THROW. */
390 extern int vdprintf (int __fd, __const char *__restrict __fmt,
391 _G_va_list __arg)
392 __attribute__ ((__format__ (__printf__, 2, 0)));
393 extern int dprintf (int __fd, __const char *__restrict __fmt, ...)
394 __attribute__ ((__format__ (__printf__, 2, 3)));
395 #endif
398 __BEGIN_NAMESPACE_STD
399 /* Read formatted input from STREAM.
401 This function is a possible cancellation point and therefore not
402 marked with __THROW. */
403 extern int fscanf (FILE *__restrict __stream,
404 __const char *__restrict __format, ...) __wur;
405 /* Read formatted input from stdin.
407 This function is a possible cancellation point and therefore not
408 marked with __THROW. */
409 extern int scanf (__const char *__restrict __format, ...) __wur;
410 /* Read formatted input from S. */
411 extern int sscanf (__const char *__restrict __s,
412 __const char *__restrict __format, ...) __THROW;
413 __END_NAMESPACE_STD
415 #ifdef __USE_ISOC99
416 __BEGIN_NAMESPACE_C99
417 /* Read formatted input from S into argument list ARG.
419 This function is a possible cancellation point and therefore not
420 marked with __THROW. */
421 extern int vfscanf (FILE *__restrict __s, __const char *__restrict __format,
422 _G_va_list __arg)
423 __attribute__ ((__format__ (__scanf__, 2, 0))) __wur;
425 /* Read formatted input from stdin into argument list ARG.
427 This function is a possible cancellation point and therefore not
428 marked with __THROW. */
429 extern int vscanf (__const char *__restrict __format, _G_va_list __arg)
430 __attribute__ ((__format__ (__scanf__, 1, 0))) __wur;
432 /* Read formatted input from S into argument list ARG. */
433 extern int vsscanf (__const char *__restrict __s,
434 __const char *__restrict __format, _G_va_list __arg)
435 __THROW __attribute__ ((__format__ (__scanf__, 2, 0)));
436 __END_NAMESPACE_C99
437 #endif /* Use ISO C9x. */
440 __BEGIN_NAMESPACE_STD
441 /* Read a character from STREAM.
443 These functions are possible cancellation points and therefore not
444 marked with __THROW. */
445 extern int fgetc (FILE *__stream);
446 extern int getc (FILE *__stream);
448 /* Read a character from stdin.
450 This function is a possible cancellation point and therefore not
451 marked with __THROW. */
452 extern int getchar (void);
453 __END_NAMESPACE_STD
455 /* The C standard explicitly says this is a macro, so we always do the
456 optimization for it. */
457 #define getc(_fp) _IO_getc (_fp)
459 #if defined __USE_POSIX || defined __USE_MISC
460 /* These are defined in POSIX.1:1996.
462 These functions are possible cancellation points and therefore not
463 marked with __THROW. */
464 extern int getc_unlocked (FILE *__stream);
465 extern int getchar_unlocked (void);
466 #endif /* Use POSIX or MISC. */
468 #ifdef __USE_MISC
469 /* Faster version when locking is not necessary.
471 This function is not part of POSIX and therefore no official
472 cancellation point. But due to similarity with an POSIX interface
473 or due to the implementation it is a cancellation point and
474 therefore not marked with __THROW. */
475 extern int fgetc_unlocked (FILE *__stream);
476 #endif /* Use MISC. */
479 __BEGIN_NAMESPACE_STD
480 /* Write a character to STREAM.
482 These functions are possible cancellation points and therefore not
483 marked with __THROW.
485 These functions is a possible cancellation point and therefore not
486 marked with __THROW. */
487 extern int fputc (int __c, FILE *__stream);
488 extern int putc (int __c, FILE *__stream);
490 /* Write a character to stdout.
492 This function is a possible cancellation point and therefore not
493 marked with __THROW. */
494 extern int putchar (int __c);
495 __END_NAMESPACE_STD
497 /* The C standard explicitly says this can be a macro,
498 so we always do the optimization for it. */
499 #define putc(_ch, _fp) _IO_putc (_ch, _fp)
501 #ifdef __USE_MISC
502 /* Faster version when locking is not necessary.
504 This function is not part of POSIX and therefore no official
505 cancellation point. But due to similarity with an POSIX interface
506 or due to the implementation it is a cancellation point and
507 therefore not marked with __THROW. */
508 extern int fputc_unlocked (int __c, FILE *__stream);
509 #endif /* Use MISC. */
511 #if defined __USE_POSIX || defined __USE_MISC
512 /* These are defined in POSIX.1:1996.
514 These functions are possible cancellation points and therefore not
515 marked with __THROW. */
516 extern int putc_unlocked (int __c, FILE *__stream);
517 extern int putchar_unlocked (int __c);
518 #endif /* Use POSIX or MISC. */
521 #if defined __USE_SVID || defined __USE_MISC \
522 || (defined __USE_XOPEN && !defined __USE_XOPEN2K)
523 /* Get a word (int) from STREAM. */
524 extern int getw (FILE *__stream);
526 /* Write a word (int) to STREAM. */
527 extern int putw (int __w, FILE *__stream);
528 #endif
531 __BEGIN_NAMESPACE_STD
532 /* Get a newline-terminated string of finite length from STREAM.
534 This function is a possible cancellation point and therefore not
535 marked with __THROW. */
536 extern char *fgets (char *__restrict __s, int __n, FILE *__restrict __stream)
537 __wur;
539 /* Get a newline-terminated string from stdin, removing the newline.
540 DO NOT USE THIS FUNCTION!! There is no limit on how much it will read.
542 This function is a possible cancellation point and therefore not
543 marked with __THROW. */
544 extern char *gets (char *__s) __wur;
545 __END_NAMESPACE_STD
547 #ifdef __USE_GNU
548 /* This function does the same as `fgets' but does not lock the stream.
550 This function is not part of POSIX and therefore no official
551 cancellation point. But due to similarity with an POSIX interface
552 or due to the implementation it is a cancellation point and
553 therefore not marked with __THROW. */
554 extern char *fgets_unlocked (char *__restrict __s, int __n,
555 FILE *__restrict __stream) __wur;
556 #endif
559 #ifdef __USE_GNU
560 /* Read up to (and including) a DELIMITER from STREAM into *LINEPTR
561 (and null-terminate it). *LINEPTR is a pointer returned from malloc (or
562 NULL), pointing to *N characters of space. It is realloc'd as
563 necessary. Returns the number of characters read (not including the
564 null terminator), or -1 on error or EOF.
566 These functions are not part of POSIX and therefore no official
567 cancellation point. But due to similarity with an POSIX interface
568 or due to the implementation they are cancellation points and
569 therefore not marked with __THROW. */
570 extern _IO_ssize_t __getdelim (char **__restrict __lineptr,
571 size_t *__restrict __n, int __delimiter,
572 FILE *__restrict __stream) __wur;
573 extern _IO_ssize_t getdelim (char **__restrict __lineptr,
574 size_t *__restrict __n, int __delimiter,
575 FILE *__restrict __stream) __wur;
577 /* Like `getdelim', but reads up to a newline.
579 This function is not part of POSIX and therefore no official
580 cancellation point. But due to similarity with an POSIX interface
581 or due to the implementation it is a cancellation point and
582 therefore not marked with __THROW. */
583 extern _IO_ssize_t getline (char **__restrict __lineptr,
584 size_t *__restrict __n,
585 FILE *__restrict __stream) __wur;
586 #endif
589 __BEGIN_NAMESPACE_STD
590 /* Write a string to STREAM.
592 This function is a possible cancellation points and therefore not
593 marked with __THROW. */
594 extern int fputs (__const char *__restrict __s, FILE *__restrict __stream);
596 /* Write a string, followed by a newline, to stdout.
598 This function is a possible cancellation points and therefore not
599 marked with __THROW. */
600 extern int puts (__const char *__s);
603 /* Push a character back onto the input buffer of STREAM.
605 This function is a possible cancellation points and therefore not
606 marked with __THROW. */
607 extern int ungetc (int __c, FILE *__stream);
610 /* Read chunks of generic data from STREAM.
612 This function is a possible cancellation points and therefore not
613 marked with __THROW. */
614 extern size_t fread (void *__restrict __ptr, size_t __size,
615 size_t __n, FILE *__restrict __stream) __wur;
616 /* Write chunks of generic data to STREAM.
618 This function is a possible cancellation points and therefore not
619 marked with __THROW. */
620 extern size_t fwrite (__const void *__restrict __ptr, size_t __size,
621 size_t __n, FILE *__restrict __s) __wur;
622 __END_NAMESPACE_STD
624 #ifdef __USE_GNU
625 /* This function does the same as `fputs' but does not lock the stream.
627 This function is not part of POSIX and therefore no official
628 cancellation point. But due to similarity with an POSIX interface
629 or due to the implementation it is a cancellation point and
630 therefore not marked with __THROW. */
631 extern int fputs_unlocked (__const char *__restrict __s,
632 FILE *__restrict __stream);
633 #endif
635 #ifdef __USE_MISC
636 /* Faster versions when locking is not necessary.
638 These functions are not part of POSIX and therefore no official
639 cancellation point. But due to similarity with an POSIX interface
640 or due to the implementation they are cancellation points and
641 therefore not marked with __THROW. */
642 extern size_t fread_unlocked (void *__restrict __ptr, size_t __size,
643 size_t __n, FILE *__restrict __stream) __wur;
644 extern size_t fwrite_unlocked (__const void *__restrict __ptr, size_t __size,
645 size_t __n, FILE *__restrict __stream) __wur;
646 #endif
649 __BEGIN_NAMESPACE_STD
650 /* Seek to a certain position on STREAM.
652 This function is a possible cancellation point and therefore not
653 marked with __THROW. */
654 extern int fseek (FILE *__stream, long int __off, int __whence);
655 /* Return the current position of STREAM.
657 This function is a possible cancellation point and therefore not
658 marked with __THROW. */
659 extern long int ftell (FILE *__stream) __wur;
660 /* Rewind to the beginning of STREAM.
662 This function is a possible cancellation point and therefore not
663 marked with __THROW. */
664 extern void rewind (FILE *__stream);
665 __END_NAMESPACE_STD
667 /* The Single Unix Specification, Version 2, specifies an alternative,
668 more adequate interface for the two functions above which deal with
669 file offset. `long int' is not the right type. These definitions
670 are originally defined in the Large File Support API. */
672 #if defined __USE_LARGEFILE || defined __USE_XOPEN2K
673 # ifndef __USE_FILE_OFFSET64
674 /* Seek to a certain position on STREAM.
676 This function is a possible cancellation point and therefore not
677 marked with __THROW. */
678 extern int fseeko (FILE *__stream, __off_t __off, int __whence);
679 /* Return the current position of STREAM.
681 This function is a possible cancellation point and therefore not
682 marked with __THROW. */
683 extern __off_t ftello (FILE *__stream) __wur;
684 # else
685 # ifdef __REDIRECT
686 extern int __REDIRECT (fseeko,
687 (FILE *__stream, __off64_t __off, int __whence),
688 fseeko64);
689 extern __off64_t __REDIRECT (ftello, (FILE *__stream), ftello64);
690 # else
691 # define fseeko fseeko64
692 # define ftello ftello64
693 # endif
694 # endif
695 #endif
697 __BEGIN_NAMESPACE_STD
698 #ifndef __USE_FILE_OFFSET64
699 /* Get STREAM's position.
701 This function is a possible cancellation point and therefore not
702 marked with __THROW. */
703 extern int fgetpos (FILE *__restrict __stream, fpos_t *__restrict __pos);
704 /* Set STREAM's position.
706 This function is a possible cancellation point and therefore not
707 marked with __THROW. */
708 extern int fsetpos (FILE *__stream, __const fpos_t *__pos);
709 #else
710 # ifdef __REDIRECT
711 extern int __REDIRECT (fgetpos, (FILE *__restrict __stream,
712 fpos_t *__restrict __pos), fgetpos64);
713 extern int __REDIRECT (fsetpos,
714 (FILE *__stream, __const fpos_t *__pos), fsetpos64);
715 # else
716 # define fgetpos fgetpos64
717 # define fsetpos fsetpos64
718 # endif
719 #endif
720 __END_NAMESPACE_STD
722 #ifdef __USE_LARGEFILE64
723 extern int fseeko64 (FILE *__stream, __off64_t __off, int __whence);
724 extern __off64_t ftello64 (FILE *__stream) __wur;
725 extern int fgetpos64 (FILE *__restrict __stream, fpos64_t *__restrict __pos);
726 extern int fsetpos64 (FILE *__stream, __const fpos64_t *__pos);
727 #endif
729 __BEGIN_NAMESPACE_STD
730 /* Clear the error and EOF indicators for STREAM. */
731 extern void clearerr (FILE *__stream) __THROW;
732 /* Return the EOF indicator for STREAM. */
733 extern int feof (FILE *__stream) __THROW __wur;
734 /* Return the error indicator for STREAM. */
735 extern int ferror (FILE *__stream) __THROW __wur;
736 __END_NAMESPACE_STD
738 #ifdef __USE_MISC
739 /* Faster versions when locking is not required. */
740 extern void clearerr_unlocked (FILE *__stream) __THROW;
741 extern int feof_unlocked (FILE *__stream) __THROW __wur;
742 extern int ferror_unlocked (FILE *__stream) __THROW __wur;
743 #endif
746 __BEGIN_NAMESPACE_STD
747 /* Print a message describing the meaning of the value of errno.
749 This function is a possible cancellation point and therefore not
750 marked with __THROW. */
751 extern void perror (__const char *__s);
752 __END_NAMESPACE_STD
754 /* Provide the declarations for `sys_errlist' and `sys_nerr' if they
755 are available on this system. Even if available, these variables
756 should not be used directly. The `strerror' function provides
757 all the necessary functionality. */
758 #include <bits/sys_errlist.h>
761 #ifdef __USE_POSIX
762 /* Return the system file descriptor for STREAM. */
763 extern int fileno (FILE *__stream) __THROW __wur;
764 #endif /* Use POSIX. */
766 #ifdef __USE_MISC
767 /* Faster version when locking is not required. */
768 extern int fileno_unlocked (FILE *__stream) __THROW __wur;
769 #endif
772 #if (defined __USE_POSIX2 || defined __USE_SVID || defined __USE_BSD || \
773 defined __USE_MISC)
774 /* Create a new stream connected to a pipe running the given command.
776 This function is a possible cancellation point and therefore not
777 marked with __THROW. */
778 extern FILE *popen (__const char *__command, __const char *__modes) __wur;
780 /* Close a stream opened by popen and return the status of its child.
782 This function is a possible cancellation point and therefore not
783 marked with __THROW. */
784 extern int pclose (FILE *__stream);
785 #endif
788 #ifdef __USE_POSIX
789 /* Return the name of the controlling terminal. */
790 extern char *ctermid (char *__s) __THROW;
791 #endif /* Use POSIX. */
794 #ifdef __USE_XOPEN
795 /* Return the name of the current user. */
796 extern char *cuserid (char *__s);
797 #endif /* Use X/Open, but not issue 6. */
800 #ifdef __USE_GNU
801 struct obstack; /* See <obstack.h>. */
803 /* Write formatted output to an obstack. */
804 extern int obstack_printf (struct obstack *__restrict __obstack,
805 __const char *__restrict __format, ...)
806 __THROW __attribute__ ((__format__ (__printf__, 2, 3)));
807 extern int obstack_vprintf (struct obstack *__restrict __obstack,
808 __const char *__restrict __format,
809 _G_va_list __args)
810 __THROW __attribute__ ((__format__ (__printf__, 2, 0)));
811 #endif /* Use GNU. */
814 #if defined __USE_POSIX || defined __USE_MISC
815 /* These are defined in POSIX.1:1996. */
817 /* Acquire ownership of STREAM. */
818 extern void flockfile (FILE *__stream) __THROW;
820 /* Try to acquire ownership of STREAM but do not block if it is not
821 possible. */
822 extern int ftrylockfile (FILE *__stream) __THROW __wur;
824 /* Relinquish the ownership granted for STREAM. */
825 extern void funlockfile (FILE *__stream) __THROW;
826 #endif /* POSIX || misc */
828 #if defined __USE_XOPEN && !defined __USE_XOPEN2K && !defined __USE_GNU
829 /* The X/Open standard requires some functions and variables to be
830 declared here which do not belong into this header. But we have to
831 follow. In GNU mode we don't do this nonsense. */
832 # define __need_getopt
833 # include <getopt.h>
834 #endif /* X/Open, but not issue 6 and not for GNU. */
836 /* If we are compiling with optimizing read this file. It contains
837 several optimizing inline functions and macros. */
838 #ifdef __USE_EXTERN_INLINES
839 # include <bits/stdio.h>
840 #endif
841 #if __USE_FORTIFY_LEVEL > 0 && !defined __cplusplus
842 # include <bits/stdio2.h>
843 #endif
844 #ifdef __LDBL_COMPAT
845 # include <bits/stdio-ldbl.h>
846 #endif
848 __END_DECLS
850 #endif /* <stdio.h> included. */
852 #endif /* !_STDIO_H */