summaryrefslogtreecommitdiffstatsabout
path: root/utility/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'utility/util.h')
-rw-r--r--utility/util.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/utility/util.h b/utility/util.h
new file mode 100644
index 0000000..8c48474
--- /dev/null
+++ b/utility/util.h
@@ -0,0 +1,13 @@
1#ifndef UTIL_H_
2#define UTIL_H_
3
4#include "apr_pools.h"
5
6char *lowerstr(apr_pool_t *pool, const char *input);
7
8/**
9 * Chomp new line characters off the end of the line
10 */
11void line_chomp(char *str);
12
13#endif /*UTIL_H_*/