/* * ------------------------------------------------------------------------- * fileio.h -- file io example header file * * Written By : D. Mazzoni and M. Austin January 1994 * ------------------------------------------------------------------------- */ #ifndef _FILEIO_H_ #define _FILEIO_H_ #include /* constants/enums for program */ enum { MaxFile = 100, MaxChar = 70 }; /* function declarations */ void error( const char * cpMessage, const char* kcpFile, const int kiLine ); void checkFile( FILE* FpCheck ); #endif