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