X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Fsetbuf.c;h=2479eb732450a04345d0f5f90dd2d21088438aae;hb=258eaed23a998f3b9a9ffebdfec0a43a893bbed8;hp=46db8e3374c109a92494b705e042635db67347a7;hpb=55cf35957bf8dec0a489ba758c02c83303a5eb50;p=pdclib diff --git a/functions/stdio/setbuf.c b/functions/stdio/setbuf.c index 46db8e3..2479eb7 100644 --- a/functions/stdio/setbuf.c +++ b/functions/stdio/setbuf.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* setbuf( FILE *, char * ) This file is part of the Public Domain C Library (PDCLib). @@ -10,7 +8,7 @@ #ifndef REGTEST -void setbuf( struct _PDCLIB_file_t * _PDCLIB_restrict stream, char * _PDCLIB_restrict buf ) +void setbuf( FILE * _PDCLIB_restrict stream, char * _PDCLIB_restrict buf ) { if ( buf == NULL ) { @@ -27,6 +25,9 @@ void setbuf( struct _PDCLIB_file_t * _PDCLIB_restrict stream, char * _PDCLIB_res #ifdef TEST #include <_PDCLIB_test.h> #include +#ifndef REGTEST +#include <_PDCLIB_io.h> +#endif int main( void ) { @@ -34,21 +35,18 @@ int main( void ) #ifndef REGTEST char buffer[ BUFSIZ + 1 ]; FILE * fh; - remove( testfile ); /* full buffered */ - TESTCASE( ( fh = fopen( testfile, "w" ) ) != NULL ); + TESTCASE( ( fh = tmpfile() ) != NULL ); setbuf( fh, buffer ); TESTCASE( fh->buffer == buffer ); TESTCASE( fh->bufsize == BUFSIZ ); TESTCASE( ( fh->status & ( _IOFBF | _IONBF | _IOLBF ) ) == _IOFBF ); TESTCASE( fclose( fh ) == 0 ); - TESTCASE( remove( testfile ) == 0 ); /* not buffered */ - TESTCASE( ( fh = fopen( testfile, "w" ) ) != NULL ); + TESTCASE( ( fh = tmpfile() ) != NULL ); setbuf( fh, NULL ); TESTCASE( ( fh->status & ( _IOFBF | _IONBF | _IOLBF ) ) == _IONBF ); TESTCASE( fclose( fh ) == 0 ); - TESTCASE( remove( testfile ) == 0 ); #else puts( " NOTEST setbuf() test driver is PDCLib-specific." ); #endif