1 2 3 4 5 6 7 8 9 10 11 12
#ifndef AMALGAM_LOG_H #define AMALGAM_LOG_H #include "defs.h" amal_mutex* amal_log_get_mutex(); void amal_log_debug(const char *fmt, ...); void amal_log_error(const char *fmt, ...); void amal_log_info(const char *fmt, ...); void amal_log_warning(const char *fmt, ...); #endif