Defined in header <cstdio> int setvbuf( std::FILE* stream, char* buffer, int mode, std::size_t size );
Changes the the buffering mode of the given file stream stream as indicated by the argument mode. In addition,
If if buffer is a null pointer, resizes of the internal buffer to size. If buffer is not a null pointer, instructs the stream to use the user-provided buffer of size size beginning at buffer. The stream must be closed (with fclose) before the lifetime of the ar