aboutsummaryrefslogtreecommitdiff
path: root/libc/str.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/str.c')
-rw-r--r--libc/str.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libc/str.c b/libc/str.c
index bf60d86..13ac27f 100644
--- a/libc/str.c
+++ b/libc/str.c
@@ -67,7 +67,7 @@ int strncmp(const char *s1, const char *s2, u32 n)
return d;
}
-char *strchr(const char *s, int c)
+char *strchr(char *s, int c)
{
while (*s != (char)c) {
if (!*s)
@@ -75,16 +75,16 @@ char *strchr(const char *s, int c)
s++;
}
- return (char *)s;
+ return s;
}
-char *strrchr(const char *s, int c)
+char *strrchr(char *s, int c)
{
char *ret = 0;
do {
if (*s == c)
- ret = (char *)s;
+ ret = s;
} while (*s++);
return ret;