update for HEAD-2003091401
[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 /*
7  * @implemented
8  */
9 void setbuf(FILE *f, char *buf)
10 {
11   if (buf)
12     setvbuf(f, buf, _IOFBF, BUFSIZ);
13   else
14     setvbuf(f, 0, _IONBF, BUFSIZ);
15 }