]> pd.if.org Git - pdclib/blob - functions/stdio/fclose.c
7871833c0069c993ef50b89a0595bb4cb96ec1fa
[pdclib] / functions / stdio / fclose.c
1 /* fclose( FILE * )
2
3    This file is part of the Public Domain C Library (PDCLib).
4    Permission is granted to use, modify, and / or redistribute at will.
5 */
6
7 #include <stdio.h>
8 #include <stdlib.h>
9
10 #ifndef REGTEST
11
12 #include "_PDCLIB_glue.h"
13
14 extern struct _PDCLIB_file_t * _PDCLIB_filelist;
15
16 int fclose( struct _PDCLIB_file_t * stream )
17 {
18     struct _PDCLIB_file_t * current = _PDCLIB_filelist;
19     struct _PDCLIB_file_t * previous = NULL;
20     /* Checking that the FILE handle is actually one we had opened before. */
21     while ( current != NULL )
22     {
23         if ( stream == current )
24         {
25             /* Flush buffer */
26             if ( stream->status & _PDCLIB_FWRITE )
27             {
28                 if ( _PDCLIB_flushbuffer( stream ) == EOF )
29                 {
30                     /* Flush failed, errno already set */
31                     return EOF;
32                 }
33             }
34             /* Close handle */
35             _PDCLIB_close( stream->handle );
36             /* Remove stream from list */
37             if ( previous != NULL )
38             {
39                 previous->next = stream->next;
40             }
41             else
42             {
43                 _PDCLIB_filelist = stream->next;
44             }
45             /* Delete tmpfile() */
46             if ( stream->status & _PDCLIB_DELONCLOSE )
47             {
48                 remove( stream->filename );
49             }
50             /* Free stream */
51             if ( ! ( stream->status & _PDCLIB_STATIC ) )
52             {
53                 free( stream );
54             }
55             return 0;
56         }
57         previous = current;
58         current = current->next;
59     }
60     /* See the comments on implementation-defined errno values in
61        <_PDCLIB_config.h>.
62     */
63     _PDCLIB_errno = _PDCLIB_ERROR;
64     return -1;
65 }
66
67 #endif
68
69 #ifdef TEST
70
71 #include "_PDCLIB_test.h"
72
73 int main( void )
74 {
75 #ifndef REGTEST
76     struct _PDCLIB_file_t * file1;
77     struct _PDCLIB_file_t * file2;
78     remove( testfile1 );
79     remove( testfile2 );
80     TESTCASE( _PDCLIB_filelist == stdin );
81     TESTCASE( ( file1 = fopen( testfile1, "w" ) ) != NULL );
82     TESTCASE( _PDCLIB_filelist == file1 );
83     TESTCASE( ( file2 = fopen( testfile2, "w" ) ) != NULL );
84     TESTCASE( _PDCLIB_filelist == file2 );
85     TESTCASE( fclose( file2 ) == 0 );
86     TESTCASE( _PDCLIB_filelist == file1 );
87     TESTCASE( ( file2 = fopen( testfile1, "w" ) ) != NULL );
88     TESTCASE( _PDCLIB_filelist == file2 );
89     TESTCASE( fclose( file1 ) == 0 );
90     TESTCASE( _PDCLIB_filelist == file2 );
91     TESTCASE( fclose( file2 ) == 0 );
92     TESTCASE( _PDCLIB_filelist == stdin );
93     TESTCASE( remove( testfile1 ) == 0 );
94     TESTCASE( remove( testfile2 ) == 0 );
95 #else
96     puts( " NOTEST fclose() test driver is PDCLib-specific." );
97 #endif
98     return TEST_RESULTS;
99 }
100
101 #endif