stdio(3) Library Functions Manual stdio(3) NAME stdio - standard input/output library functions LIBRARY Standard C library (libc, -lc) SYNOPSIS #include extern FILE *stdin; extern FILE *stdout; extern FILE *stderr; DESCRIPTION The standard I/O library provides a simple and efficient buffered stream I/O interface. Input and output is mapped into logical data streams and the physical I/O characteristics are concealed. The functions and macros are listed below; more information is available from the individual man pages. A stream is associated with an external file (which may be a physical de- vice) by opening a file, which may involve creating a new file. Creating an existing file causes its former contents to be discarded. If a file can support positioning requests (such as a disk file, as opposed to a termi- nal), then a file position indicator associated with the stream is posi- tioned at the start of the file (byte zero), unless the file is opened with append mode. If append mode is used, it is unspecified whether the posi- tion indicator will be placed at the start or the end of the file. The po- sition indicator is maintained by subsequent reads, writes, and positioning requests. All input occurs as if the characters were read by successive calls to the fgetc(3) function; all output takes place as if all characters were written by successive calls to the fputc(3) function. A file is disassociated from a stream by closing the file. Output streams are flushed (any unwritten buffer contents are transferred to the host en- vironment) before the stream is disassociated from the file. The value of a pointer to a FILE object is indeterminate after a file is closed (garbage). A file may be subsequently reopened, by the same or another program execu- tion, and its contents reclaimed or modified (if it can be repositioned at the start). If the main function returns to its original caller, or the exit(3) function is called, all open files are closed (hence all output streams are flushed) before program termination. Other methods of program termination, such as abort(3) do not bother about closing files properly. At program startup, three text streams are predefined and need not be opened explicitly: standard input (for reading conventional input), stan- dard output (for writing conventional output), and standard error (for writing diagnostic output). These streams are abbreviated stdin, stdout, and stderr. When opened, the standard error stream is not fully buffered; the standard input and output streams are fully buffered if and only if the streams do not refer to an interactive device. Output streams that refer to terminal devices are always line buffered by default; pending output to such streams is written automatically whenever an input stream that refers to a terminal device is read. In cases where a large amount of computation is done after printing part of a line on an output terminal, it is necessary to fflush(3) the standard output before going off and computing so that the output will appear. The stdio library is a part of the library libc and routines are automati- cally loaded as needed by cc(1). The SYNOPSIS sections of the following manual pages indicate which include files are to be used, what the compiler declaration for the function looks like, and which external variables are of interest. The following are defined as macros; these names may not be reused without first removing their current definitions with #undef: BUFSIZ, EOF, FILE- NAME_MAX, FOPEN_MAX, L_cuserid, L_ctermid, L_tmpnam, NULL, SEEK_END, SEEK_SET, SEEK_CUR, TMP_MAX, clearerr, feof, ferror, fileno, getc, getchar, putc, putchar, stderr, stdin, stdout. Function versions of the macro func- tions feof, ferror, clearerr, fileno, getc, getchar, putc, and putchar ex- ist and will be used if the macros definitions are explicitly removed. List of functions ; lb lbx l l. Function Description _ T{ clearerr(3) T} T{ check and re- set stream status T} T{ fclose(3) T} T{ close a stream T} T{ fdopen(3) T} T{ stream open functions T} T{ feof(3) T} T{ check and reset stream status T} T{ ferror(3) T} T{ check and reset stream status T} T{ fflush(3) T} T{ flush a stream T} T{ fgetc(3) T} T{ get next character or word from input stream T} T{ fgetpos(3) T} T{ reposition a stream T} T{ fgets(3) T} T{ get a line from a stream T} T{ fileno(3) T} T{ return the integer descriptor of the argument stream T} T{ fmemopen(3) T} T{ open memory as stream T} T{ fopen(3) T} T{ stream open functions T} T{ fopencookie(3) T} T{ open a custom stream T} T{ fprintf(3) T} T{ for- matted output conversion T} T{ fpurge(3) T} T{ flush a stream T} T{ fputc(3) T} T{ output a character or word to a stream T} T{ fputs(3) T} T{ output a line to a stream T} T{ fread(3) T} T{ binary stream in- put/output T} T{ freopen(3) T} T{ stream open functions T} T{ fscanf(3) T} T{ input format conversion T} T{ fseek(3) T} T{ reposition a stream T} T{ fsetpos(3) T} T{ reposition a stream T} T{ ftell(3) T} T{ reposi- tion a stream T} T{ fwrite(3) T} T{ binary stream input/output T} T{ getc(3) T} T{ get next character or word from input stream T} T{ getchar(3) T} T{ get next character or word from input stream T} T{ gets(3) T} T{ get a line from a stream T} T{ getw(3) T} T{ get next character or word from input stream T} T{ mktemp(3) T} T{ make temporary filename (unique) T} T{ open_memstream(3) T} T{ open a dynamic memory buffer stream T} T{ open_wmemstream(3) T} T{ open a dynamic memory buffer stream T} T{ perror(3) T} T{ system error messages T} T{ printf(3) T} T{ formatted output conversion T} T{ putc(3) T} T{ output a charac- ter or word to a stream T} T{ putchar(3) T} T{ output a character or word to a stream T} T{ puts(3) T} T{ output a line to a stream T} T{ putw(3) T} T{ output a character or word to a stream T} T{ remove(3) T} T{ re- move directory entry T} T{ rewind(3) T} T{ reposition a stream T} T{ scanf(3) T} T{ input format conversion T} T{ setbuf(3) T} T{ stream buffering operations T} T{ setbuffer(3) T} T{ stream buffering operations T} T{ setlinebuf(3) T} T{ stream buffering operations T} T{ setvbuf(3) T} T{ stream buffering operations T} T{ sprintf(3) T} T{ formatted out- put conversion T} T{ sscanf(3) T} T{ input format conversion T} T{ str- error(3) T} T{ system error messages T} T{ sys_errlist(3) T} T{ system error messages T} T{ sys_nerr(3) T} T{ system error messages T} T{ temp- nam(3) T} T{ temporary file routines T} T{ tmpfile(3) T} T{ temporary file routines T} T{ tmpnam(3) T} T{ temporary file routines T} T{ ungetc(3) T} T{ un-get character from input stream T} T{ vfprintf(3) T} T{ formatted output conversion T} T{ vfscanf(3) T} T{ input format conversion T} T{ vprintf(3) T} T{ formatted output conversion T} T{ vs- canf(3) T} T{ input format conversion T} T{ vsprintf(3) T} T{ formatted output conversion T} T{ vsscanf(3) T} T{ input format conversion T} STANDARDS C11, POSIX.1-2008. HISTORY C89, POSIX.1-2001. SEE ALSO close(2), open(2), read(2), write(2), stdout(3), unlocked_stdio(3) Linux man-pages 6.18 2025-09-21 stdio(3)