diff options
Diffstat (limited to 'src/extString.h')
-rw-r--r-- | src/extString.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/extString.h b/src/extString.h index 66149f1..d621792 100644 --- a/src/extString.h +++ b/src/extString.h @@ -1,3 +1,3 @@ -char *strlwr(char *s); -char *trim(char *s); -char *replaceStr(char *s, char *old, char *replace); +const char *strlwr(const char *s); +char *trim(const char *s); +char *replaceStr(const char *s, const char *old, const char *replace); |