GCLog/logger.h
2018-04-08 21:34:42 +02:00

12 lines
220 B
C

#ifndef _LOGGER_H_
#define _LOGGER_H_
#include <syslog.h>
void log_open(const char *name);
void log_close();
void log_inform(const char *msg);
void log_warn(const char *msg);
void log_exclaim(const char *msg);
#endif