aboutsummaryrefslogtreecommitdiff
path: root/include/std/log.h
blob: d13c5bf6612b7959cc3e6b4d79291fc1cb908528 (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