3 /* _PDCLIB_closeall( void )
5 This file is part of the Public Domain C Library (PDCLib).
6 Permission is granted to use, modify, and / or redistribute at will.
11 extern struct _PDCLIB_file_t * _PDCLIB_filelist;
13 void _PDCLIB_closeall( void )
15 struct _PDCLIB_file_t * stream = _PDCLIB_filelist;
16 struct _PDCLIB_file_t * next;
17 while ( stream != NULL )
26 #include <_PDCLIB_test.h>
30 TESTCASE( NO_TESTDRIVER );