]> git.saurik.com Git - apple/libc.git/blame - stdio/setbuf.3
Libc-498.1.7.tar.gz
[apple/libc.git] / stdio / setbuf.3
CommitLineData
224c7076
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.
16.\" 3. All advertising materials mentioning features or use of this software
17.\" must display the following acknowledgement:
18.\" This product includes software developed by the University of
19.\" California, Berkeley and its contributors.
20.\" 4. Neither the name of the University nor the names of its contributors
21.\" may be used to endorse or promote products derived from this software
22.\" without specific prior written permission.
23.\"
24.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34.\" SUCH DAMAGE.
35.\"
36.\" @(#)setbuf.3 8.1 (Berkeley) 6/4/93
37.\" $FreeBSD: src/lib/libc/stdio/setbuf.3,v 1.15 2004/08/24 21:48:21 alfred Exp $
38.\"
39.Dd June 4, 1993
40.Dt SETBUF 3
41.Os
42.Sh NAME
43.Nm setbuf ,
44.Nm setbuffer ,
45.Nm setlinebuf ,
46.Nm setvbuf
47.Nd stream buffering operations
48.Sh LIBRARY
49.Lb libc
50.Sh SYNOPSIS
51.In stdio.h
52.Ft void
53.Fo setbuf
54.Fa "FILE *restrict stream"
55.Fa "char *restrict buf"
56.Fc
57.Ft void
58.Fo setbuffer
59.Fa "FILE *stream"
60.Fa "char *buf"
61.Fa "int size"
62.Fc
63.Ft int
64.Fo setlinebuf
65.Fa "FILE *stream"
66.Fc
67.Ft int
68.Fo setvbuf
69.Fa "FILE *restrict stream"
70.Fa "char *restrict buf"
71.Fa "int type"
72.Fa "size_t size"
73.Fc
74.Sh DESCRIPTION
75Three types of buffering are available:
76unbuffered, block buffered, and line buffered.
77When an output stream is unbuffered, information appears on the
78destination file or terminal as soon as written;
79when it is block buffered,
80many characters are saved up and written as a block;
81when it is line buffered,
82characters are saved up until a newline is output
83or input is read from any stream attached to a terminal device
84(typically
85.Dv stdin ) .
86The function
87.Xr fflush 3
88may be used to force the block out early.
89(See
90.Xr fclose 3 . )
91.Pp
92Normally, all files are block buffered.
93When the first
94.Tn I/O
95operation occurs on a file,
96.Xr malloc 3
97is called and an optimally-sized buffer is obtained.
98If a stream refers to a terminal
99(as
100.Dv stdout
101normally does), it is line buffered.
102The standard error stream
103.Dv stderr
104is always unbuffered.
105.Pp
106The
107.Fn setvbuf
108function
109may be used to alter the buffering behavior of a stream.
110The
111.Fa type
112argument must be one of the following three macros:
113.Bl -tag -width _IOFBF -offset indent
114.It Dv _IONBF
115unbuffered
116.It Dv _IOLBF
117line buffered
118.It Dv _IOFBF
119fully buffered
120.El
121.Pp
122The
123.Fa size
124argument may be given as zero
125to obtain deferred optimal-size buffer allocation as usual.
126If it is not zero,
127then except for unbuffered files, the
128.Fa buf
129argument should point to a buffer at least
130.Fa size
131bytes long;
132this buffer will be used instead of the current buffer.
133If
134.Fa buf
135is not NULL, it is the caller's responsibility to
136.Xr free 3
137this buffer after closing the stream.
138(If the
139.Fa size
140argument
141is not zero but
142.Fa buf
143is
144.Dv NULL ,
145a buffer of the given size will be allocated immediately,
146and released on close.
147This is an extension to ANSI C;
148portable code should use a size of 0 with any
149.Dv NULL
150buffer.)
151.Pp
152The
153.Fn setvbuf
154function may be used at any time,
155but may have peculiar side effects
156(such as discarding input or flushing output)
157if the stream is ``active''.
158Portable applications should call it only once on any given stream,
159and before any
160.Tn I/O
161is performed.
162.Pp
163The other three calls are, in effect, simply aliases for calls to
164.Fn setvbuf .
165Except for the lack of a return value, the
166.Fn setbuf
167function is exactly equivalent to the call
168.Pp
169.Dl "setvbuf(stream, buf, buf ? _IOFBF : _IONBF, BUFSIZ);"
170.Pp
171The
172.Fn setbuffer
173function
174is the same, except that the size of the buffer is up to the caller,
175rather than being determined by the default
176.Dv BUFSIZ .
177The
178.Fn setlinebuf
179function
180is exactly equivalent to the call:
181.Pp
182.Dl "setvbuf(stream, (char *)NULL, _IOLBF, 0);"
183.Sh RETURN VALUES
184The
185.Fn setvbuf
186function returns 0 on success, or
187.Dv EOF
188if the request cannot be honored
189(note that the stream is still functional in this case).
190.Pp
191The
192.Fn setlinebuf
193function returns what the equivalent
194.Fn setvbuf
195would have returned.
196.Sh SEE ALSO
197.Xr fclose 3 ,
198.Xr fopen 3 ,
199.Xr fread 3 ,
200.Xr malloc 3 ,
201.Xr printf 3 ,
202.Xr puts 3
203.Sh STANDARDS
204The
205.Fn setbuf
206and
207.Fn setvbuf
208functions
209conform to
210.St -isoC .
211.Sh BUGS
212The
213.Fn setbuffer
214and
215.Fn setlinebuf
216functions are not portable to versions of
217.Bx
218before
219.Bx 4.2 .
220On
221.Bx 4.2
222and
223.Bx 4.3
224systems,
225.Fn setbuf
226always uses a suboptimal buffer size and should be avoided.