1SETVBUF(P) POSIX Programmer's Manual SETVBUF(P)
2
3
4
6 setvbuf - assign buffering to a stream
7
9 #include <stdio.h>
10
11 int setvbuf(FILE *restrict stream, char *restrict buf, int type,
12 size_t size);
13
14
16 The setvbuf() function may be used after the stream pointed to by
17 stream is associated with an open file but before any other operation
18 (other than an unsuccessful call to setvbuf()) is performed on the
19 stream. The argument type determines how stream shall be buffered, as
20 follows:
21
22 * {_IOFBF} shall cause input/output to be fully buffered.
23
24 * {_IOLBF} shall cause input/output to be line buffered.
25
26 * {_IONBF} shall cause input/output to be unbuffered.
27
28 If buf is not a null pointer, the array it points to may be used
29 instead of a buffer allocated by setvbuf() and the argument size speciā
30 fies the size of the array; otherwise, size may determine the size of a
31 buffer allocated by the setvbuf() function. The contents of the array
32 at any time are unspecified.
33
34 For information about streams, see Standard I/O Streams .
35
37 Upon successful completion, setvbuf() shall return 0. Otherwise, it
38 shall return a non-zero value if an invalid value is given for type or
39 if the request cannot be honored, and may set errno to indicate the
40 error.
41
43 The setvbuf() function may fail if:
44
45 EBADF The file descriptor underlying stream is not valid.
46
47
48 The following sections are informative.
49
51 None.
52
54 A common source of error is allocating buffer space as an "automatic"
55 variable in a code block, and then failing to close the stream in the
56 same block.
57
58 With setvbuf(), allocating a buffer of size bytes does not necessarily
59 imply that all of size bytes are used for the buffer area.
60
61 Applications should note that many implementations only provide line
62 buffering on input from terminal devices.
63
65 None.
66
68 None.
69
71 Standard I/O Streams , fopen() , setbuf() , the Base Definitions volume
72 of IEEE Std 1003.1-2001, <stdio.h>
73
75 Portions of this text are reprinted and reproduced in electronic form
76 from IEEE Std 1003.1, 2003 Edition, Standard for Information Technology
77 -- Portable Operating System Interface (POSIX), The Open Group Base
78 Specifications Issue 6, Copyright (C) 2001-2003 by the Institute of
79 Electrical and Electronics Engineers, Inc and The Open Group. In the
80 event of any discrepancy between this version and the original IEEE and
81 The Open Group Standard, the original IEEE and The Open Group Standard
82 is the referee document. The original Standard can be obtained online
83 at http://www.opengroup.org/unix/online.html .
84
85
86
87IEEE/The Open Group 2003 SETVBUF(P)