blob: 7a866e6922856f0cb916e6c1bab827aa14b98b5d [file] [log] [blame]
#define _GNU_SOURCE
#include <stdio.h>
void setbuffer(FILE* f, char* buf, size_t size) {
setvbuf(f, buf, buf ? _IOFBF : _IONBF, size);
}