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