3 /* setbuf( FILE *, char * )
5 This file is part of the Public Domain C Library (PDCLib).
6 Permission is granted to use, modify, and / or redistribute at will.
13 void setbuf( FILE * _PDCLIB_restrict stream, char * _PDCLIB_restrict buf )
15 /* TODO: Only allowed on a "virgin" stream; add check. */
18 setvbuf( stream, buf, _IONBF, BUFSIZ );
22 setvbuf( stream, buf, _IOFBF, BUFSIZ );
29 #include <_PDCLIB_test.h>
33 TESTCASE( NO_TESTDRIVER );