summaryrefslogtreecommitdiffstats
path: root/src/logging.h
blob: e03dad646f7b8505b3a28d10a57e48ad5ce73cba (plain)
1
2
3
4
5
6
7
8
#ifndef LOGGING_H
#define LOGGING_H

void debug(const char *fmt, ...);
void warn(const char *fmt, ...);
void err(int status, const char *fmt, ...);

#endif