]> git.saurik.com Git - apple/libc.git/blame - stdio/FreeBSD/setbuf.3
Libc-1439.100.3.tar.gz
[apple/libc.git] / stdio / FreeBSD / setbuf.3
CommitLineData
5b2abdfb
A
1.\" Copyright (c) 1980, 1991, 1993
2.\" The Regents of the University of California. All rights reserved.
3.\"
4.\" This code is derived from software contributed to Berkeley by
5.\" the American National Standards Committee X3, on Information
6.\" Processing Systems.
7.\"
8.\" Redistribution and use in source and binary forms, with or without
9.\" modification, are permitted provided that the following conditions
10.\" are met:
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.
5b2abdfb
A
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.
19.\"
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
30.\" SUCH DAMAGE.
31.\"
32.\" @(#)setbuf.3 8.1 (Berkeley) 6/4/93
1f2f436a 33.\" $FreeBSD: src/lib/libc/stdio/setbuf.3,v 1.17 2007/01/09 00:28:07 imp Exp $
5b2abdfb
A
34.\"
35.Dd June 4, 1993
36.Dt SETBUF 3
37.Os
38.Sh NAME
39.Nm setbuf ,
40.Nm setbuffer ,
41.Nm setlinebuf ,
42.Nm setvbuf
43.Nd stream buffering operations
44.Sh LIBRARY
45.Lb libc
46.Sh SYNOPSIS
47.In stdio.h
48.Ft void
ad3c9f2a
A
49.Fo setbuf
50.Fa "FILE *restrict stream"
51.Fa "char *restrict buf"
52.Fc
5b2abdfb 53.Ft void
ad3c9f2a
A
54.Fo setbuffer
55.Fa "FILE *stream"
56.Fa "char *buf"
57.Fa "int size"
58.Fc
5b2abdfb 59.Ft int
ad3c9f2a
A
60.Fo setlinebuf
61.Fa "FILE *stream"
62.Fc
5b2abdfb 63.Ft int
ad3c9f2a
A
64.Fo setvbuf
65.Fa "FILE *restrict stream"
66.Fa "char *restrict buf"
67.Fa "int type"
68.Fa "size_t size"
69.Fc
5b2abdfb 70.Sh DESCRIPTION
ad3c9f2a
A
71Three types of buffering are available:
72unbuffered, block buffered, and line buffered.
5b2abdfb
A
73When an output stream is unbuffered, information appears on the
74destination file or terminal as soon as written;
ad3c9f2a
A
75when it is block buffered,
76many characters are saved up and written as a block;
77when it is line buffered,
78characters are saved up until a newline is output
79or input is read from any stream attached to a terminal device
9385eb3d
A
80(typically
81.Dv stdin ) .
70ad1dc8
A
82.Pp
83The default buffer settings can be overwritten for stdout
84.Dv ( STDBUF1 )
85or for all descriptors
86.Dv ( STDBUF ) .
87The environment variable value is a letter followed by an optional numeric
88value indicating the size of the buffer.
89Valid sizes range from 0B to 64KB.
90Valid letters are:
91.Bl -tag -width X -indent
92.It Dv Li U
93Unbuffered.
94.It Dv Li L
95Line-buffered.
96.It Dv Li F
97Fully-buffered.
98.El
99.Pp
5b2abdfb
A
100The function
101.Xr fflush 3
102may be used to force the block out early.
103(See
104.Xr fclose 3 . )
105.Pp
ad3c9f2a 106Normally, all files are block buffered.
5b2abdfb
A
107When the first
108.Tn I/O
109operation occurs on a file,
110.Xr malloc 3
ad3c9f2a 111is called and an optimally-sized buffer is obtained.
5b2abdfb
A
112If a stream refers to a terminal
113(as
9385eb3d 114.Dv stdout
ad3c9f2a 115normally does), it is line buffered.
5b2abdfb 116The standard error stream
9385eb3d 117.Dv stderr
5b2abdfb
A
118is always unbuffered.
119.Pp
120The
121.Fn setvbuf
122function
123may be used to alter the buffering behavior of a stream.
124The
ad3c9f2a 125.Fa type
9385eb3d 126argument must be one of the following three macros:
5b2abdfb
A
127.Bl -tag -width _IOFBF -offset indent
128.It Dv _IONBF
129unbuffered
130.It Dv _IOLBF
131line buffered
132.It Dv _IOFBF
133fully buffered
134.El
135.Pp
136The
137.Fa size
9385eb3d 138argument may be given as zero
5b2abdfb
A
139to obtain deferred optimal-size buffer allocation as usual.
140If it is not zero,
141then except for unbuffered files, the
142.Fa buf
143argument should point to a buffer at least
144.Fa size
145bytes long;
146this buffer will be used instead of the current buffer.
3d9156a7
A
147If
148.Fa buf
1f2f436a
A
149is not
150.Dv NULL ,
151it is the caller's responsibility to
3d9156a7
A
152.Xr free 3
153this buffer after closing the stream.
5b2abdfb
A
154(If the
155.Fa size
156argument
157is not zero but
158.Fa buf
159is
160.Dv NULL ,
161a buffer of the given size will be allocated immediately,
162and released on close.
163This is an extension to ANSI C;
164portable code should use a size of 0 with any
165.Dv NULL
166buffer.)
167.Pp
168The
169.Fn setvbuf
170function may be used at any time,
171but may have peculiar side effects
172(such as discarding input or flushing output)
173if the stream is ``active''.
174Portable applications should call it only once on any given stream,
175and before any
176.Tn I/O
177is performed.
178.Pp
179The other three calls are, in effect, simply aliases for calls to
180.Fn setvbuf .
181Except for the lack of a return value, the
182.Fn setbuf
183function is exactly equivalent to the call
184.Pp
185.Dl "setvbuf(stream, buf, buf ? _IOFBF : _IONBF, BUFSIZ);"
186.Pp
187The
188.Fn setbuffer
189function
190is the same, except that the size of the buffer is up to the caller,
191rather than being determined by the default
192.Dv BUFSIZ .
193The
194.Fn setlinebuf
195function
196is exactly equivalent to the call:
197.Pp
198.Dl "setvbuf(stream, (char *)NULL, _IOLBF, 0);"
199.Sh RETURN VALUES
200The
201.Fn setvbuf
202function returns 0 on success, or
203.Dv EOF
204if the request cannot be honored
205(note that the stream is still functional in this case).
206.Pp
207The
208.Fn setlinebuf
209function returns what the equivalent
210.Fn setvbuf
211would have returned.
212.Sh SEE ALSO
213.Xr fclose 3 ,
214.Xr fopen 3 ,
215.Xr fread 3 ,
216.Xr malloc 3 ,
217.Xr printf 3 ,
218.Xr puts 3
219.Sh STANDARDS
220The
221.Fn setbuf
222and
223.Fn setvbuf
224functions
225conform to
226.St -isoC .
227.Sh BUGS
228The
229.Fn setbuffer
230and
231.Fn setlinebuf
232functions are not portable to versions of
233.Bx
234before
235.Bx 4.2 .
236On
237.Bx 4.2
238and
239.Bx 4.3
240systems,
241.Fn setbuf
242always uses a suboptimal buffer size and should be avoided.