summaryrefslogtreecommitdiffstatsabout
path: root/utility/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'utility/util.h')
-rw-r--r--utility/util.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/utility/util.h b/utility/util.h
index 8c48474..9e3aed3 100644
--- a/utility/util.h
+++ b/utility/util.h
@@ -3,6 +3,8 @@
3 3
4#include "apr_pools.h" 4#include "apr_pools.h"
5 5
6#include "config.h"
7
6char *lowerstr(apr_pool_t *pool, const char *input); 8char *lowerstr(apr_pool_t *pool, const char *input);
7 9
8/** 10/**
@@ -10,4 +12,9 @@ char *lowerstr(apr_pool_t *pool, const char *input);
10 */ 12 */
11void line_chomp(char *str); 13void line_chomp(char *str);
12 14
15void logging_init(config_t *cfg);
16
17void logging_log(config_t *cfg, loglevel_e level, const char *fmt, ...)
18 __attribute__((format(printf, 3, 4)));
19
13#endif /*UTIL_H_*/ 20#endif /*UTIL_H_*/