1 2 3 4 5 6 7 8 9 10 11 12
#ifndef FOOLOS_LOG_H #define FOOLOS_LOGL_H #define FOOLOS_LOG_INFO 1 #include <stdarg.h> void log(char *module_name, int prio, char *format_string, ...); #endif