blob: 6ce9e4c60fcadfc94c84bbd2a4873cf819e841ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#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, ...);
void amal_log_perror(const char *prefix);
#endif
|