#ifndef UTIL_H #define UTIL_H #include #include #include #include void log_inf(const char* fmt, ...); void log_raw(const char* fmt, ...); void log_war(const char* fmt, ...); void log_err(const char* fmt, ...); void die(const char* fmt, ...); #endif