5fb09f2bd069bb979c78d59696adbe33f746f5d2
[reactos.git] / reactos / lib / crtdll / stdio / setbuffe.c
1 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
2 //#include <crtdll/stubs.h>
3 #include <crtdll/stdio.h>
4 #include <crtdll/stdlib.h>
5
6 void setbuffer(FILE *f, void *buf, int size)
7 {
8 if (buf)
9 setvbuf(f, buf, _IOFBF, size);
10 else
11 setvbuf(f, 0, _IONBF, 0);
12 }