]> pd.if.org Git - pdclib/blobdiff - functions/_PDCLIB/closeall.c
Rename all files to match their primary symbol (avoids file conflicts in library...
[pdclib] / functions / _PDCLIB / closeall.c
diff --git a/functions/_PDCLIB/closeall.c b/functions/_PDCLIB/closeall.c
deleted file mode 100644 (file)
index 5086d0d..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-/* $Id$ */
-
-/* _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
-