Handle ampersand

Replaced with & in messages
This commit is contained in:
James Booth
2012-04-19 22:26:12 +01:00
parent 9805b2b2b2
commit 366eecc195
7 changed files with 118 additions and 3 deletions

4
util.h
View File

@@ -24,6 +24,8 @@
#define UTIL_H
void get_time(char *thetime);
char *trim(char *str);
char * trim(char *str);
char * str_replace(const char *string, const char *substr,
const char *replacement);
#endif