Qsmtp  0.30dev
log.h
Go to the documentation of this file.
1 
4 #ifndef LOG_H
5 #define LOG_H
6 
7 extern void log_writen(int priority, const char **s) __attribute__ ((nonnull (2)));
8 extern void log_write(int priority, const char *s) __attribute__ ((nonnull (2)));
9 /* this function has to be implemented by every program */
10 extern void dieerror(int error) __attribute__ ((noreturn));
11 
12 #endif
void log_write(int priority, const char *s)
Definition: log.c:58
void log_writen(int priority, const char **s)
Definition: log.c:20
void dieerror(int error)
Definition: reply.c:96