First commit

This commit is contained in:
Steffen Lange 2018-04-08 21:34:42 +02:00
commit 0a28bac78a
37 changed files with 1963 additions and 0 deletions

12
logger.h Normal file
View file

@ -0,0 +1,12 @@
#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