1 2 3 4 5 6 7 8 9
#include "libioP.h" #include "stdio.h" void setbuf (fp, buf) FILE *fp; char *buf; { _IO_setbuffer(fp, buf, _IO_BUFSIZ); }