diff options
author | axtloss <axtlos@getcryst.al> | 2024-05-28 20:01:57 +0200 |
---|---|---|
committer | axtloss <axtlos@getcryst.al> | 2024-05-28 20:01:57 +0200 |
commit | ff0328765c04614701bbfe793bb228cd63f1b2fc (patch) | |
tree | eaec361a71a2cb4d09e178e9574c260f5da58417 /src/extString.h | |
parent | 85e5469362db3c3fb89f7dc3fbe1eb1431fb2fcc (diff) | |
download | autodarkmode-ff0328765c04614701bbfe793bb228cd63f1b2fc.tar.gz autodarkmode-ff0328765c04614701bbfe793bb228cd63f1b2fc.tar.bz2 |
add readme and fix some warnings
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); |