1 2 3 4 5 6 7 8
#ifndef LOGGING_H #define LOGGING_H void debug(const char *fmt, ...); void warn(const char *fmt, ...); void err(int status, const char *fmt, ...); #endif