FAT | RFS | XFS | ZFS
setbuf()
PROTOTYPE
#include <stdio.h>
void setbuf(FILE *file, char *buf);
DESCRIPTION
setbuf() is used in some environments to control how a stream is buffered. A call to “setbuf(file, buf)” is equivalent to calling “setvbuf(file, buf, _IOFBF, BUFSIZ);”
For Blunk’s file systems, the buffer size is set at compile time, so setbuf() has no effect.