3 /* rename( const char *, const char * )
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 #include <_PDCLIB_glue.h>
14 int rename( const char * old, const char * new )
16 /* TODO: Search open file list, flush and close file */
17 return _PDCLIB_rename( old, new );
23 #include <_PDCLIB_test.h>
28 TESTCASE( NO_TESTDRIVER );
30 puts( " NOTEST rename() test driver is PDCLib-specific." );