1 2 3 4 5 6 7
#include <io.h> #include <stdio.h> void setbuf(FILE *restrict stream, char *restrict buf) { setvbuf(stream, buf, buf != NULL ? _IOFBF : _IONBF, BUFSIZ); }