6 lines
105 B
C
6 lines
105 B
C
#include <stdio.h>
|
|
|
|
void setbuf(FILE *f, char *buf)
|
|
{
|
|
setvbuf(f, buf, buf ? _IOFBF : _IONBF, BUFSIZ);
|
|
}
|