diff options
Diffstat (limited to 'utility/util.h')
| -rw-r--r-- | utility/util.h | 13 |
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 | |||
| 6 | char *lowerstr(apr_pool_t *pool, const char *input); | ||
| 7 | |||
| 8 | /** | ||
| 9 | * Chomp new line characters off the end of the line | ||
| 10 | */ | ||
| 11 | void line_chomp(char *str); | ||
| 12 | |||
| 13 | #endif /*UTIL_H_*/ | ||
