aboutsummaryrefslogtreecommitdiffstats
path: root/src/pdclib/functions/_PDCLIB/_PDCLIB_closeall.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pdclib/functions/_PDCLIB/_PDCLIB_closeall.c')
-rw-r--r--src/pdclib/functions/_PDCLIB/_PDCLIB_closeall.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/pdclib/functions/_PDCLIB/_PDCLIB_closeall.c b/src/pdclib/functions/_PDCLIB/_PDCLIB_closeall.c
new file mode 100644
index 0000000..3c928e7
--- /dev/null
+++ b/src/pdclib/functions/_PDCLIB/_PDCLIB_closeall.c
@@ -0,0 +1,37 @@
+/* _PDCLIB_closeall( void )
+
+ This file is part of the Public Domain C Library (PDCLib).
+ Permission is granted to use, modify, and / or redistribute at will.
+*/
+
+#include <stdio.h>
+
+#ifndef REGTEST
+
+extern struct _PDCLIB_file_t * _PDCLIB_filelist;
+
+void _PDCLIB_closeall( void )
+{
+ struct _PDCLIB_file_t * stream = _PDCLIB_filelist;
+ struct _PDCLIB_file_t * next;
+ while ( stream != NULL )
+ {
+ next = stream->next;
+ fclose( stream );
+ stream = next;
+ }
+}
+
+#endif
+
+#ifdef TEST
+
+#include "_PDCLIB_test.h"
+
+int main( void )
+{
+ /* No testdriver */
+ return TEST_RESULTS;
+}
+
+#endif