1 .\" Copyright (c) 1980, 1991, 1993
2 .\" The Regents of the University of California. All rights reserved.
4 .\" This code is derived from software contributed to Berkeley by
5 .\" the American National Standards Committee X3, on Information
6 .\" Processing Systems.
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 .\" 4. Neither the name of the University nor the names of its contributors
17 .\" may be used to endorse or promote products derived from this software
18 .\" without specific prior written permission.
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 .\" @(#)setbuf.3 8.1 (Berkeley) 6/4/93
33 .\" $FreeBSD: src/lib/libc/stdio/setbuf.3,v 1.17 2007/01/09 00:28:07 imp Exp $
43 .Nd stream buffering operations
50 .Fa "FILE *restrict stream"
51 .Fa "char *restrict buf"
65 .Fa "FILE *restrict stream"
66 .Fa "char *restrict buf"
71 Three types of buffering are available:
72 unbuffered, block buffered, and line buffered.
73 When an output stream is unbuffered, information appears on the
74 destination file or terminal as soon as written;
75 when it is block buffered,
76 many characters are saved up and written as a block;
77 when it is line buffered,
78 characters are saved up until a newline is output
79 or input is read from any stream attached to a terminal device
84 may be used to force the block out early.
88 Normally, all files are block buffered.
91 operation occurs on a file,
93 is called and an optimally-sized buffer is obtained.
94 If a stream refers to a terminal
97 normally does), it is line buffered.
98 The standard error stream
100 is always unbuffered.
105 may be used to alter the buffering behavior of a stream.
108 argument must be one of the following three macros:
109 .Bl -tag -width _IOFBF -offset indent
120 argument may be given as zero
121 to obtain deferred optimal-size buffer allocation as usual.
123 then except for unbuffered files, the
125 argument should point to a buffer at least
128 this buffer will be used instead of the current buffer.
133 it is the caller's responsibility to
135 this buffer after closing the stream.
143 a buffer of the given size will be allocated immediately,
144 and released on close.
145 This is an extension to ANSI C;
146 portable code should use a size of 0 with any
152 function may be used at any time,
153 but may have peculiar side effects
154 (such as discarding input or flushing output)
155 if the stream is ``active''.
156 Portable applications should call it only once on any given stream,
161 The other three calls are, in effect, simply aliases for calls to
163 Except for the lack of a return value, the
165 function is exactly equivalent to the call
167 .Dl "setvbuf(stream, buf, buf ? _IOFBF : _IONBF, BUFSIZ);"
172 is the same, except that the size of the buffer is up to the caller,
173 rather than being determined by the default
178 is exactly equivalent to the call:
180 .Dl "setvbuf(stream, (char *)NULL, _IOLBF, 0);"
184 function returns 0 on success, or
186 if the request cannot be honored
187 (note that the stream is still functional in this case).
191 function returns what the equivalent
214 functions are not portable to versions of
224 always uses a suboptimal buffer size and should be avoided.