:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / lib / msvcrt / stdio / setbuf.c
1 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
2 #include <msvcrt/stdio.h>
3 #include <msvcrt/stdlib.h>
4 #include <msvcrt/internal/file.h>
5
6 void setbuf(FILE *f, char *buf)
7 {
8   if (buf)
9     setvbuf(f, buf, _IOFBF, BUFSIZ);
10   else
11     setvbuf(f, 0, _IONBF, BUFSIZ);
12 }