setbuf()

This is a file I/O function, also hardware dependent. It is not implemented in this Compiler.

Syntax
#include <stdio.h>

  
  void setbuf(FILE *f, char *buf);

  
Description

setbuf() lets you specify how a file is buffered. If buf is NULL, the file is unbuffered (all input or output goes directly to and comes directly from the file). If buf is not NULL, it is used as a buffer ( buf points to an array of BUFSIZ bytes).

Return
See also

fflush()

setvbuf()