1 2 3 4 5 6 7 8 9 10
#ifndef LOG_H #define LOG_H 1 int log_init(char* file); void log_free(void); int logs(char* format, ...); #endif