DOC HOME SITE MAP MAN PAGES GNU INFO SEARCH PRINT BOOK
 

stdio(S-osr5)


stdio -- standard buffered input/output package

Syntax

#include <stdio.h>

FILE *stdin, *stdout, *stderr;

Description

The functions described in this manual entry constitute an efficient, user-level I/O buffering scheme. The in-line macros getc(S-osr5) and putc(S-osr5) handle characters quickly. The macros getchar and putchar, and the higher-level routines fgetc, fgets, fprintf, fputc, fputs, fread, fscanf, fwrite, gets, getw, printf, puts, putw, and scanf all use or act as if they use getc and putc; they can be freely intermixed.

If the program is compiled in the default mode, the following are defined only as macros: getc, getchar, putc, putchar, ferror, feof, clearerr, and fileno. If the program is compiled in -ansi, -posix, or -xpg3 mode, they exist as macros and functions. The function form can be used if the macro form is #undef'ed.

A file with associated buffering is called a stream and is declared to be a pointer to a defined type FILE. The fopen(S-osr5) function creates certain descriptive data for a stream and returns a pointer to designate the stream in all further transactions. Normally, there are three open streams with constant pointers declared in the <stdio.h> header file and associated with the standard open files:

stdin- standard input file

stdout- standard output file

stderr- standard error file

A constant NULL (0) designates a nonexistent pointer.

An integer-constant EOF (-1) is returned upon end-of-file or error by most integer functions that deal with streams (see the individual descriptions for details).

An integer constant BUFSIZ specifies the size of the buffers used by the particular implementation.

Any program that uses this package must include the header file of pertinent macro definitions, as follows:

   #include <stdio.h>
The constants and the following ``functions'' are implemented as macros (redeclaration of these names is perilous): getc, getchar, putc, putchar, ferror, feof, clearerr, and fileno.

Output streams, with the exception of the standard error stream stderr, are by default buffered if the output refers to a file, and line-buffered if the output refers to a terminal. The standard error output stream stderr is by default unbuffered, but use of freopen (see fopen(S-osr5)) cause it to become buffered or line-buffered. When an output stream is unbuffered, information is queued for writing on the destination file or terminal as soon as written. When it is buffered, many characters are saved up and written as a block. When it is line-buffered, each line of output is queued for writing on the destination terminal as soon as the line is completed (that is, as soon as a new-line character is written or terminal input is requested). The setbuf or setvbuf functions in setbuf(S-osr5) may be used to change the stream's buffering strategy.

The default setting for the open file limit (FOPEN_MAX) is 128. For code compiled to be iBCS2 conformant, the default is 60. The existing shared C library is iBCS2 conformant and, thus, is restricted to an open file limit of 60. The static archive (libc.a) is restricted to 128.

Diagnostics

Invalid stream pointers usually cause disorders, possibly including program termination. Individual function descriptions describe the possible error conditions.

See also

close(S-osr5), ctermid(S-osr5), cuserid(S-osr5), fclose(S-osr5), ferror(S-osr5), fopen(S-osr5), fread(S-osr5), fseek(S-osr5), getc(S-osr5), gets(S-osr5), lseek(S-osr5), open(S-osr5), pipe(S-osr5), popen(S-osr5), printf(S-osr5), putc(S-osr5), puts(S-osr5), read(S-osr5), scanf(S-osr5), setbuf(S-osr5), system(S-osr5), tmpfile(S-osr5), tmpnam(S-osr5), ungetc(S-osr5) write(S-osr5),

Standards conformance

stdio is conformant with:

ANSI X3.159-1989 Programming Language -- C ;
IEEE POSIX Std 1003.1-1990 System Application Program Interface (API) [C Language] (ISO/IEC 9945-1) ;
X/Open Portability Guide, Issue 3, 1989 .


© 2005 The SCO Group, Inc. All rights reserved.
SCO OpenServer Release 6.0.0 -- 02 June 2005