Header: stdio.h
Syntax:
extern int setvbuf
(
FILE *stream,
char *buf,
int mode,
size_t size
);
Purpose: Function may be used after the stream pointed to by stream has been associated with an open file but before it is read or written. mode describes how the stream will be buffered.
|
|
|