8 lines
135 B
C
8 lines
135 B
C
#ifndef UTIL_H
|
|
#define UTIL_H
|
|
|
|
void remove_trailing_slash(char *str);
|
|
void urlencode(const char *str, char *result);
|
|
|
|
#endif // UTIL_H
|