setbuf()
Syntax:
#include <stdio.h> void setbuf( FILE *stream, char *buffer );
Description:
The setbuf() function sets stream to use buffer, or, if buffer is null, turns off buffering. If a non-standard buffer size is used, it should by BUFSIZ characters long.
Related Topics:
fopen(), fclose(), setvbuf()



