// ******** // ERRORS.H // ******** #ifndef ERRORS_H #define ERRORS_H #include #include // this function takes a formatted character string and params like printf, // prints a formatted message, and then aborts the program. Its used for // trapping errors and halting execution. void Error(const char *msg, ...); #endif