NAME
setvbuf — assign
buffering to a stream
SYNOPSIS
#include <stdio.h> int setvbuf(FILE *stream, char *buf, int type, size_t size);
DESCRIPTION
The setvbuf() function may be used after the stream pointed to by stream is associated with an open file but before any other operation is performed on the stream. The argument type determines how stream will be buffered, as follows: _IOFBF causes input/output to be fully buffered; _IOLBF causes input/output to be line buffered; _IONBF causes input/output to be unbuffered. If buf is not a null pointer, the array it points to may be used instead of a buffer allocated by setvbuf() . The argument size specifies the size of the array. The contents of the array at any time are indeterminate.
For information about streams, see stdio(3).
RETURN VALUE
Upon successful completion, setvbuf() returns 0. Otherwise, it returns a non-zero value if an invalid value is given for type or if the request cannot be honoured.
ERRORS
The setvbuf() function may fail if:
- [EBADF]
- The file descriptor underlying stream is not valid.
EXAMPLES
None.
APPLICATION USAGE
A common source of error is allocating buffer space as an "automatic" variable in a code block, and then failing to close the stream in the same block.
With setvbuf(), allocating a buffer of size bytes does not necessarily imply that all of size bytes are used for the buffer area.
Applications should note that many implementations only provide line buffering on input from terminal devices.
FUTURE DIRECTIONS
None.
SEE ALSO
DERIVATION
Derived from Issue 1 of the SVID.