xref: /freebsd/lib/libc/stdio/stdio.3 (revision 35ac34a23bc0e54eb2a2314b906c6e7769dee7f0)
158f0484fSRodney W. Grimes.\" Copyright (c) 1990, 1991, 1993
258f0484fSRodney W. Grimes.\"	The Regents of the University of California.  All rights reserved.
358f0484fSRodney W. Grimes.\"
458f0484fSRodney W. Grimes.\" Redistribution and use in source and binary forms, with or without
558f0484fSRodney W. Grimes.\" modification, are permitted provided that the following conditions
658f0484fSRodney W. Grimes.\" are met:
758f0484fSRodney W. Grimes.\" 1. Redistributions of source code must retain the above copyright
858f0484fSRodney W. Grimes.\"    notice, this list of conditions and the following disclaimer.
958f0484fSRodney W. Grimes.\" 2. Redistributions in binary form must reproduce the above copyright
1058f0484fSRodney W. Grimes.\"    notice, this list of conditions and the following disclaimer in the
1158f0484fSRodney W. Grimes.\"    documentation and/or other materials provided with the distribution.
12fbbd9655SWarner Losh.\" 3. Neither the name of the University nor the names of its contributors
1358f0484fSRodney W. Grimes.\"    may be used to endorse or promote products derived from this software
1458f0484fSRodney W. Grimes.\"    without specific prior written permission.
1558f0484fSRodney W. Grimes.\"
1658f0484fSRodney W. Grimes.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1758f0484fSRodney W. Grimes.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1858f0484fSRodney W. Grimes.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1958f0484fSRodney W. Grimes.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2058f0484fSRodney W. Grimes.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2158f0484fSRodney W. Grimes.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2258f0484fSRodney W. Grimes.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2358f0484fSRodney W. Grimes.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2458f0484fSRodney W. Grimes.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2558f0484fSRodney W. Grimes.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2658f0484fSRodney W. Grimes.\" SUCH DAMAGE.
2758f0484fSRodney W. Grimes.\"
28ad760e6fSDavid Schultz.Dd March 3, 2009
2958f0484fSRodney W. Grimes.Dt STDIO 3
30a307d598SRuslan Ermilov.Os
3158f0484fSRodney W. Grimes.Sh NAME
3258f0484fSRodney W. Grimes.Nm stdio
3358f0484fSRodney W. Grimes.Nd standard input/output library functions
3425bb73e0SAlexey Zelkin.Sh LIBRARY
3525bb73e0SAlexey Zelkin.Lb libc
3658f0484fSRodney W. Grimes.Sh SYNOPSIS
3732eef9aeSRuslan Ermilov.In stdio.h
38d0353b83SRuslan Ermilov.Vt FILE *stdin ;
39d0353b83SRuslan Ermilov.Vt FILE *stdout ;
40d0353b83SRuslan Ermilov.Vt FILE *stderr ;
4158f0484fSRodney W. Grimes.Sh DESCRIPTION
4258f0484fSRodney W. GrimesThe standard
4358f0484fSRodney W. Grimes.Tn I/O
4458f0484fSRodney W. Grimeslibrary provides a simple and efficient buffered stream
4558f0484fSRodney W. Grimes.Tn I/O
4658f0484fSRodney W. Grimesinterface.
47a5ed710cSMike PritchardInput and output is mapped into logical data streams
4858f0484fSRodney W. Grimesand the physical
4958f0484fSRodney W. Grimes.Tn I/O
50c6ff3a1bSSheldon Hearncharacteristics are concealed.
51c6ff3a1bSSheldon HearnThe functions and macros are listed
5258f0484fSRodney W. Grimesbelow; more information is available from the individual man pages.
5358f0484fSRodney W. Grimes.Pp
5458f0484fSRodney W. GrimesA stream is associated with an external file (which may be a physical
5558f0484fSRodney W. Grimesdevice) by
5658f0484fSRodney W. Grimes.Em opening
57c6ff3a1bSSheldon Hearna file, which may involve creating a new file.
58c6ff3a1bSSheldon HearnCreating an
5958f0484fSRodney W. Grimesexisting file causes its former contents to be discarded.
6058f0484fSRodney W. GrimesIf a file can support positioning requests (such as a disk file, as opposed
6158f0484fSRodney W. Grimesto a terminal) then a
6258f0484fSRodney W. Grimes.Em file position indicator
6358f0484fSRodney W. Grimesassociated with the stream is positioned at the start of the file (byte
64c6ff3a1bSSheldon Hearnzero), unless the file is opened with append mode.
65c6ff3a1bSSheldon HearnIf append mode
66b8e5e42dSStephen McKayis used, the position indicator will be placed at the end-of-file.
6758f0484fSRodney W. GrimesThe position indicator is maintained by subsequent reads, writes
68c6ff3a1bSSheldon Hearnand positioning requests.
69c6ff3a1bSSheldon HearnAll input occurs as if the characters
7058f0484fSRodney W. Grimeswere read by successive calls to the
7158f0484fSRodney W. Grimes.Xr fgetc 3
72a5ed710cSMike Pritchardfunction; all output takes place as if all characters were
73b8e5e42dSStephen McKaywritten by successive calls to the
7458f0484fSRodney W. Grimes.Xr fputc 3
7558f0484fSRodney W. Grimesfunction.
7658f0484fSRodney W. Grimes.Pp
7758f0484fSRodney W. GrimesA file is disassociated from a stream by
7858f0484fSRodney W. Grimes.Em closing
7958f0484fSRodney W. Grimesthe file.
80a5ed710cSMike PritchardOutput streams are flushed (any unwritten buffer contents are transferred
8158f0484fSRodney W. Grimesto the host environment) before the stream is disassociated from the file.
8258f0484fSRodney W. GrimesThe value of a pointer to a
8358f0484fSRodney W. Grimes.Dv FILE
84b8e5e42dSStephen McKayobject is indeterminate (garbage) after a file is closed.
8558f0484fSRodney W. Grimes.Pp
8658f0484fSRodney W. GrimesA file may be subsequently reopened, by the same or another program
8758f0484fSRodney W. Grimesexecution, and its contents reclaimed or modified (if it can be repositioned
881a0a9345SRuslan Ermilovat the start).
891a0a9345SRuslan ErmilovIf the main function returns to its original caller, or
9058f0484fSRodney W. Grimesthe
9158f0484fSRodney W. Grimes.Xr exit 3
9258f0484fSRodney W. Grimesfunction is called, all open files are closed (hence all output
931a0a9345SRuslan Ermilovstreams are flushed) before program termination.
941a0a9345SRuslan ErmilovOther methods
95b8e5e42dSStephen McKayof program termination may not close files properly and hence
961a0a9345SRuslan Ermilovbuffered output may be lost.
971a0a9345SRuslan ErmilovIn particular,
98b8e5e42dSStephen McKay.Xr _exit 2
991a0a9345SRuslan Ermilovdoes not flush stdio files.
1001a0a9345SRuslan ErmilovNeither does an exit due to a signal.
101b8e5e42dSStephen McKayBuffers are flushed by
10258f0484fSRodney W. Grimes.Xr abort 3
103b8e5e42dSStephen McKayas required by POSIX, although previous implementations did not.
10458f0484fSRodney W. Grimes.Pp
105b8e5e42dSStephen McKayThis implementation makes no distinction between
10658f0484fSRodney W. Grimes.Dq text
10758f0484fSRodney W. Grimesand
10858f0484fSRodney W. Grimes.Dq binary
10958f0484fSRodney W. Grimesstreams.
11058f0484fSRodney W. GrimesIn effect, all streams are binary.
11158f0484fSRodney W. GrimesNo translation is performed and no extra padding appears on any stream.
11258f0484fSRodney W. Grimes.Pp
11358f0484fSRodney W. GrimesAt program startup, three streams are predefined and need not be
11458f0484fSRodney W. Grimesopened explicitly:
11558f0484fSRodney W. Grimes.Bl -bullet -compact -offset indent
11658f0484fSRodney W. Grimes.It
11758f0484fSRodney W. Grimes.Em standard input
11858f0484fSRodney W. Grimes(for reading conventional input),
11958f0484fSRodney W. Grimes.It
12058f0484fSRodney W. Grimes.Em standard output
121712dc76eSMike Pritchard(for writing conventional output), and
12258f0484fSRodney W. Grimes.It
12358f0484fSRodney W. Grimes.Em standard error
12458f0484fSRodney W. Grimes(for writing diagnostic output).
12558f0484fSRodney W. Grimes.El
12658f0484fSRodney W. GrimesThese streams are abbreviated
127ae828962SRuslan Ermilov.Dv stdin , stdout
12858f0484fSRodney W. Grimesand
129ae828962SRuslan Ermilov.Dv stderr .
13058f0484fSRodney W. GrimesInitially, the standard error stream
13158f0484fSRodney W. Grimesis unbuffered; the standard input and output streams are
13258f0484fSRodney W. Grimesfully buffered if and only if the streams do not refer to
13358f0484fSRodney W. Grimesan interactive or
13458f0484fSRodney W. Grimes.Dq terminal
13558f0484fSRodney W. Grimesdevice, as determined by the
13658f0484fSRodney W. Grimes.Xr isatty 3
13758f0484fSRodney W. Grimesfunction.
13858f0484fSRodney W. GrimesIn fact,
13958f0484fSRodney W. Grimes.Em all
14058f0484fSRodney W. Grimesfreshly-opened streams that refer to terminal devices
14158f0484fSRodney W. Grimesdefault to line buffering, and
14258f0484fSRodney W. Grimespending output to such streams is written automatically
143b8e5e42dSStephen McKaywhenever such an input stream is read.
14458f0484fSRodney W. GrimesNote that this applies only to
14558f0484fSRodney W. Grimes.Dq "true reads" ;
14658f0484fSRodney W. Grimesif the read request can be satisfied by existing buffered data,
14758f0484fSRodney W. Grimesno automatic flush will occur.
14858f0484fSRodney W. GrimesIn these cases,
14958f0484fSRodney W. Grimesor when a large amount of computation is done after printing
15058f0484fSRodney W. Grimespart of a line on an output terminal, it is necessary to
15158f0484fSRodney W. Grimes.Xr fflush 3
15258f0484fSRodney W. Grimesthe standard output before going off and computing so that the output
15358f0484fSRodney W. Grimeswill appear.
15458f0484fSRodney W. GrimesAlternatively, these defaults may be modified via the
15558f0484fSRodney W. Grimes.Xr setvbuf 3
15658f0484fSRodney W. Grimesfunction.
15758f0484fSRodney W. Grimes.Pp
15858f0484fSRodney W. GrimesThe
1593b8ecdbbSRuslan Ermilov.Nm
16058f0484fSRodney W. Grimeslibrary is a part of the library
161064f0074SMike Pritchard.Nm libc
162b8e5e42dSStephen McKayand routines are automatically loaded as needed by the C compiler.
16358f0484fSRodney W. GrimesThe
16458f0484fSRodney W. Grimes.Tn SYNOPSIS
16558f0484fSRodney W. Grimessections of the following manual pages indicate which include files
16658f0484fSRodney W. Grimesare to be used, what the compiler declaration for the function
16758f0484fSRodney W. Grimeslooks like and which external variables are of interest.
16858f0484fSRodney W. Grimes.Pp
16958f0484fSRodney W. GrimesThe following are defined as macros;
17058f0484fSRodney W. Grimesthese names may not be re-used
17158f0484fSRodney W. Grimeswithout first removing their current definitions with
172522ccf3fSRuslan Ermilov.Ic #undef :
17358f0484fSRodney W. Grimes.Dv BUFSIZ ,
17458f0484fSRodney W. Grimes.Dv EOF ,
17558f0484fSRodney W. Grimes.Dv FILENAME_MAX ,
17624653713SBruce Evans.Dv FOPEN_MAX ,
17758f0484fSRodney W. Grimes.Dv L_ctermid ,
178522ccf3fSRuslan Ermilov.Dv L_cuserid ,
17958f0484fSRodney W. Grimes.Dv L_tmpnam ,
18058f0484fSRodney W. Grimes.Dv NULL ,
181b8e5e42dSStephen McKay.Dv P_tmpdir ,
182b8e5e42dSStephen McKay.Dv SEEK_CUR ,
18358f0484fSRodney W. Grimes.Dv SEEK_END ,
18458f0484fSRodney W. Grimes.Dv SEEK_SET ,
18558f0484fSRodney W. Grimes.Dv TMP_MAX ,
1863236e08bSTim J. Robbins.Dv clearerr ,
18772c9dabbSTim J. Robbins.Dv clearerr_unlocked ,
1883236e08bSTim J. Robbins.Dv feof ,
18972c9dabbSTim J. Robbins.Dv feof_unlocked ,
1903236e08bSTim J. Robbins.Dv ferror ,
19172c9dabbSTim J. Robbins.Dv ferror_unlocked ,
1923236e08bSTim J. Robbins.Dv fileno ,
19372c9dabbSTim J. Robbins.Dv fileno_unlocked ,
194522ccf3fSRuslan Ermilov.Dv fropen ,
195522ccf3fSRuslan Ermilov.Dv fwopen ,
1963236e08bSTim J. Robbins.Dv getc ,
19772c9dabbSTim J. Robbins.Dv getc_unlocked ,
1983236e08bSTim J. Robbins.Dv getchar ,
19972c9dabbSTim J. Robbins.Dv getchar_unlocked ,
2003236e08bSTim J. Robbins.Dv putc ,
20172c9dabbSTim J. Robbins.Dv putc_unlocked ,
2023236e08bSTim J. Robbins.Dv putchar ,
20372c9dabbSTim J. Robbins.Dv putchar_unlocked ,
20458f0484fSRodney W. Grimes.Dv stderr ,
20572c9dabbSTim J. Robbins.Dv stdin
20658f0484fSRodney W. Grimesand
20772c9dabbSTim J. Robbins.Dv stdout .
20872c9dabbSTim J. RobbinsFunction versions of the macro functions
2093236e08bSTim J. Robbins.Dv clearerr ,
21072c9dabbSTim J. Robbins.Dv clearerr_unlocked ,
2113236e08bSTim J. Robbins.Dv feof ,
21272c9dabbSTim J. Robbins.Dv feof_unlocked ,
2133236e08bSTim J. Robbins.Dv ferror ,
21472c9dabbSTim J. Robbins.Dv ferror_unlocked ,
2153236e08bSTim J. Robbins.Dv fileno ,
21672c9dabbSTim J. Robbins.Dv fileno_unlocked ,
2173236e08bSTim J. Robbins.Dv getc ,
21872c9dabbSTim J. Robbins.Dv getc_unlocked ,
2193236e08bSTim J. Robbins.Dv getchar ,
22072c9dabbSTim J. Robbins.Dv getchar_unlocked ,
2213236e08bSTim J. Robbins.Dv putc ,
2223236e08bSTim J. Robbins.Dv putc_unlocked ,
2233236e08bSTim J. Robbins.Dv putchar ,
22472c9dabbSTim J. Robbinsand
225522ccf3fSRuslan Ermilov.Dv putchar_unlocked
226b8e5e42dSStephen McKayexist and will be used if the macro
22758f0484fSRodney W. Grimesdefinitions are explicitly removed.
22858f0484fSRodney W. Grimes.Sh SEE ALSO
22958f0484fSRodney W. Grimes.Xr close 2 ,
23075141cc9SWolfram Schneider.Xr open 2 ,
23158f0484fSRodney W. Grimes.Xr read 2 ,
23258f0484fSRodney W. Grimes.Xr write 2
23358f0484fSRodney W. Grimes.Sh STANDARDS
23458f0484fSRodney W. GrimesThe
2353b8ecdbbSRuslan Ermilov.Nm
23658f0484fSRodney W. Grimeslibrary conforms to
237e74101e4STim J. Robbins.St -isoC-99 .
23858f0484fSRodney W. Grimes.Sh LIST OF FUNCTIONS
23958f0484fSRodney W. Grimes.Bl -column "Description"
24042635956SRuslan Ermilov.It Sy "Function	Description"
24142635956SRuslan Ermilov.It "asprintf	formatted output conversion"
24242635956SRuslan Ermilov.It "clearerr	check and reset stream status"
243ad760e6fSDavid Schultz.It "dprintf	formatted output conversion"
24442635956SRuslan Ermilov.It "fclose	close a stream"
24542635956SRuslan Ermilov.It "fdopen	stream open functions"
24642635956SRuslan Ermilov.It "feof	check and reset stream status"
24742635956SRuslan Ermilov.It "ferror	check and reset stream status"
24842635956SRuslan Ermilov.It "fflush	flush a stream"
24942635956SRuslan Ermilov.It "fgetc	get next character or word from input stream"
25042635956SRuslan Ermilov.It "fgetln	get a line from a stream"
25142635956SRuslan Ermilov.It "fgetpos	reposition a stream"
25242635956SRuslan Ermilov.It "fgets	get a line from a stream"
253e74101e4STim J. Robbins.It "fgetwc	get next wide character from input stream"
254e74101e4STim J. Robbins.It "fgetws	get a line of wide characters from a stream"
255*35ac34a2SKonstantin Belousov.It "fileno	map a stream pointer to a file descriptor"
25642635956SRuslan Ermilov.It "fopen	stream open functions"
25742635956SRuslan Ermilov.It "fprintf	formatted output conversion"
25842635956SRuslan Ermilov.It "fpurge	flush a stream"
25942635956SRuslan Ermilov.It "fputc	output a character or word to a stream"
26042635956SRuslan Ermilov.It "fputs	output a line to a stream"
261e74101e4STim J. Robbins.It "fputwc	output a wide character to a stream"
262e74101e4STim J. Robbins.It "fputws	output a line of wide characters to a stream"
26342635956SRuslan Ermilov.It "fread	binary stream input/output"
26442635956SRuslan Ermilov.It "freopen	stream open functions"
26542635956SRuslan Ermilov.It "fropen	open a stream"
26642635956SRuslan Ermilov.It "fscanf	input format conversion"
26742635956SRuslan Ermilov.It "fseek	reposition a stream"
26842635956SRuslan Ermilov.It "fsetpos	reposition a stream"
26942635956SRuslan Ermilov.It "ftell	reposition a stream"
27042635956SRuslan Ermilov.It "funopen	open a stream"
271e74101e4STim J. Robbins.It "fwide	set/get orientation of stream"
27242635956SRuslan Ermilov.It "fwopen	open a stream"
273c5604d0aSTim J. Robbins.It "fwprintf	formatted wide character output conversion"
27442635956SRuslan Ermilov.It "fwrite	binary stream input/output"
27542635956SRuslan Ermilov.It "getc	get next character or word from input stream"
27642635956SRuslan Ermilov.It "getchar	get next character or word from input stream"
27769099ba2SDavid Schultz.It "getdelim	get a line from a stream"
27869099ba2SDavid Schultz.It "getline	get a line from a stream"
27942635956SRuslan Ermilov.It "getw	get next character or word from input stream"
280e74101e4STim J. Robbins.It "getwc	get next wide character from input stream"
281e74101e4STim J. Robbins.It "getwchar	get next wide character from input stream"
2828f3e32c2SGregory Neil Shapiro.It "mkdtemp	create unique temporary directory"
28342635956SRuslan Ermilov.It "mkstemp	create unique temporary file"
28442635956SRuslan Ermilov.It "mktemp	create unique temporary file"
28542635956SRuslan Ermilov.It "perror	system error messages"
28642635956SRuslan Ermilov.It "printf	formatted output conversion"
28742635956SRuslan Ermilov.It "putc	output a character or word to a stream"
28842635956SRuslan Ermilov.It "putchar	output a character or word to a stream"
28942635956SRuslan Ermilov.It "puts	output a line to a stream"
29042635956SRuslan Ermilov.It "putw	output a character or word to a stream"
291e74101e4STim J. Robbins.It "putwc	output a wide character to a stream"
292e74101e4STim J. Robbins.It "putwchar	output a wide character to a stream"
29342635956SRuslan Ermilov.It "remove	remove directory entry"
29442635956SRuslan Ermilov.It "rewind	reposition a stream"
29542635956SRuslan Ermilov.It "scanf	input format conversion"
29642635956SRuslan Ermilov.It "setbuf	stream buffering operations"
29742635956SRuslan Ermilov.It "setbuffer	stream buffering operations"
29842635956SRuslan Ermilov.It "setlinebuf	stream buffering operations"
29942635956SRuslan Ermilov.It "setvbuf	stream buffering operations"
30042635956SRuslan Ermilov.It "snprintf	formatted output conversion"
30142635956SRuslan Ermilov.It "sprintf	formatted output conversion"
30242635956SRuslan Ermilov.It "sscanf	input format conversion"
30342635956SRuslan Ermilov.It "strerror	system error messages"
304c5604d0aSTim J. Robbins.It "swprintf	formatted wide character output conversion"
30542635956SRuslan Ermilov.It "sys_errlist	system error messages"
30642635956SRuslan Ermilov.It "sys_nerr	system error messages"
30742635956SRuslan Ermilov.It "tempnam	temporary file routines"
30842635956SRuslan Ermilov.It "tmpfile	temporary file routines"
30942635956SRuslan Ermilov.It "tmpnam	temporary file routines"
31042635956SRuslan Ermilov.It "ungetc	un-get character from input stream"
311e74101e4STim J. Robbins.It "ungetwc	un-get wide character from input stream"
31242635956SRuslan Ermilov.It "vasprintf	formatted output conversion"
313ad760e6fSDavid Schultz.It "vdprintf	formatted output conversion"
31442635956SRuslan Ermilov.It "vfprintf	formatted output conversion"
31542635956SRuslan Ermilov.It "vfscanf	input format conversion"
316c5604d0aSTim J. Robbins.It "vfwprintf	formatted wide character output conversion"
31742635956SRuslan Ermilov.It "vprintf	formatted output conversion"
31842635956SRuslan Ermilov.It "vscanf	input format conversion"
31942635956SRuslan Ermilov.It "vsnprintf	formatted output conversion"
32042635956SRuslan Ermilov.It "vsprintf	formatted output conversion"
32142635956SRuslan Ermilov.It "vsscanf	input format conversion"
322c5604d0aSTim J. Robbins.It "vswprintf	formatted wide character output conversion"
323c5604d0aSTim J. Robbins.It "vwprintf	formatted wide character output conversion"
324c5604d0aSTim J. Robbins.It "wprintf	formatted wide character output conversion"
32558f0484fSRodney W. Grimes.El
32624a0682cSRuslan Ermilov.Sh BUGS
32724a0682cSRuslan ErmilovThe standard buffered functions do not interact well with certain other
32824a0682cSRuslan Ermilovlibrary and system functions, especially
32924a0682cSRuslan Ermilov.Xr vfork 2 .
330