1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/** * @file common.h * Common miscellaneous functions */ #ifndef COMMON_H #define COMMON_H /** * End the current task with a message * @param msg Message to output before bailing */ void bail_out(const char* msg); #endif