////////////////////////////////////////////////////////// // Name: MiscFileFunctions.h // // // // Description: Contains miscalanious functions for // // dealing with files. // // // // AUTHOR: Lucas Scharf // // Feb 5, 1998 // // // // REVISIONS: None // // // // VERSION: 0.00 // ////////////////////////////////////////////////////////// //////////////////////////////////////////////////////// // Multiple Inclusion Protection // //////////////////////////////////////////////////////// #ifndef MISCFILEFUNCTIONS_H #define MISCFILEFUNCTIONS_H ////////////////////////////////////////////////////////// // Public Function Prototypes // ////////////////////////////////////////////////////////// bool FileExists(const char FileName[]); void ChangeFilenameExtension(char FileName[], const char NewExtension[]); #endif