X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fstdio%2Fsetbuf.c;h=749ddc9d2a8aeefc366505fd6c2e1ec0a6db821d;hp=a68ea27da8ac01aef06c3a9c4c25510f6f049ee8;hb=da0f3f353d417fed71f358a48d5d5394145e460d;hpb=393020b6e48719d27699dea6b29e53025bbd5123 diff --git a/functions/stdio/setbuf.c b/functions/stdio/setbuf.c index a68ea27..749ddc9 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 ) { @@ -25,31 +23,30 @@ void setbuf( struct _PDCLIB_file_t * _PDCLIB_restrict stream, char * _PDCLIB_res #endif #ifdef TEST -#include <_PDCLIB_test.h> +#include "_PDCLIB_test.h" #include +#ifndef REGTEST +#include "_PDCLIB_io.h" +#endif int main( void ) { /* TODO: Extend testing once setvbuf() is finished. */ #ifndef REGTEST - char const * const filename = "testfile"; char buffer[ BUFSIZ + 1 ]; FILE * fh; - remove( filename ); /* full buffered */ - TESTCASE( ( fh = fopen( filename, "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( filename ) == 0 ); /* not buffered */ - TESTCASE( ( fh = fopen( filename, "w" ) ) != NULL ); + TESTCASE( ( fh = tmpfile() ) != NULL ); setbuf( fh, NULL ); TESTCASE( ( fh->status & ( _IOFBF | _IONBF | _IOLBF ) ) == _IONBF ); TESTCASE( fclose( fh ) == 0 ); - TESTCASE( remove( filename ) == 0 ); #else puts( " NOTEST setbuf() test driver is PDCLib-specific." ); #endif