5 This file is part of the Public Domain C Library (PDCLib).
6 Permission is granted to use, modify, and / or redistribute at will.
14 #include <_PDCLIB_glue.h>
16 extern struct _PDCLIB_file_t * _PDCLIB_filelist;
18 int fclose( struct _PDCLIB_file_t * stream )
20 struct _PDCLIB_file_t * current = _PDCLIB_filelist;
21 struct _PDCLIB_file_t * previous = NULL;
22 /* Checking that the FILE handle is actually one we had opened before. */
23 while ( current != NULL )
25 if ( stream == current )
28 if ( stream->status & _PDCLIB_FWRITE )
30 if ( _PDCLIB_flushbuffer( stream ) == EOF )
32 /* Flush failed, errno already set */
37 _PDCLIB_close( stream->handle );
38 /* Remove stream from list */
39 if ( previous != NULL )
41 previous->next = stream->next;
45 _PDCLIB_filelist = stream->next;
47 /* Delete tmpfile() */
48 if ( stream->status & _PDCLIB_DELONCLOSE )
50 remove( stream->filename );
53 if ( ! ( stream->status & _PDCLIB_STATIC ) )
60 current = current->next;
70 #include <_PDCLIB_test.h>
75 struct _PDCLIB_file_t * file1;
76 struct _PDCLIB_file_t * file2;
79 TESTCASE( _PDCLIB_filelist == stdin );
80 TESTCASE( ( file1 = fopen( testfile1, "w" ) ) != NULL );
81 TESTCASE( _PDCLIB_filelist == file1 );
82 TESTCASE( ( file2 = fopen( testfile2, "w" ) ) != NULL );
83 TESTCASE( _PDCLIB_filelist == file2 );
84 TESTCASE( fclose( file2 ) == 0 );
85 TESTCASE( _PDCLIB_filelist == file1 );
86 TESTCASE( ( file2 = fopen( testfile2, "w" ) ) != NULL );
87 TESTCASE( _PDCLIB_filelist == file2 );
88 TESTCASE( fclose( file1 ) == 0 );
89 TESTCASE( _PDCLIB_filelist == file2 );
90 TESTCASE( fclose( file2 ) == 0 );
91 TESTCASE( _PDCLIB_filelist == stdin );
92 TESTCASE( remove( testfile1 ) == 0 );
93 TESTCASE( remove( testfile2 ) == 0 );
95 puts( " NOTEST fclose() test driver is PDCLib-specific." );