1
0
mirror of https://github.com/falk-werner/webfused synced 2024-09-28 22:00:44 +00:00
falk-werner_webfused/src/webfused/log/syslog_logger.h

25 lines
303 B
C
Raw Normal View History

2020-03-18 08:38:25 +00:00
#ifndef WFD_LOG_SYSLOG_LOGGER_H
#define WFD_LOG_SYSLOG_LOGGER_H
2020-03-18 16:33:31 +00:00
#ifndef __cplusplus
#include <stdbool.h>
#endif
2020-03-18 08:38:25 +00:00
#ifdef __cplusplus
extern "C"
{
#endif
2020-03-18 16:33:31 +00:00
struct wfd_settings;
extern bool
2020-03-18 08:38:25 +00:00
wfd_syslog_logger_init(
int level,
2020-03-18 16:33:31 +00:00
struct wfd_settings * settings);
2020-03-18 08:38:25 +00:00
#ifdef __cplusplus
}
#endif
#endif