summaryrefslogtreecommitdiffstatsabout
path: root/utility/util.h
blob: 8c48474bcddb1b4790c27bbe1ca64510cb98bad2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef UTIL_H_
#define UTIL_H_

#include "apr_pools.h"

char *lowerstr(apr_pool_t *pool, const char *input);

/**
 * Chomp new line characters off the end of the line
 */
void line_chomp(char *str);

#endif /*UTIL_H_*/