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.
12 extern struct _PDCLIB_file_t * _PDCLIB_filelist;
14 void _PDCLIB_closeall( void )
16 struct _PDCLIB_file_t * stream = _PDCLIB_filelist;
17 struct _PDCLIB_file_t * next;
18 while ( stream != NULL )
28 #include <_PDCLIB_test.h>