diff options
author | Marvin Borner | 2021-02-25 20:45:10 +0100 |
---|---|---|
committer | Marvin Borner | 2021-02-25 20:45:10 +0100 |
commit | a9710cb73cc9ecadaff241428a39a26935cb5c0a (patch) | |
tree | 68f509407bc49a4da43ccadfd9115b9e6f7eb413 /libc/inc/str.h | |
parent | 26587adae4f5ec61d03fd7075805a24b29107fe3 (diff) |
Applied even more warning flags!
Fixing all the warnings wasn't that easy actually..
Diffstat (limited to 'libc/inc/str.h')
-rw-r--r-- | libc/inc/str.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/inc/str.h b/libc/inc/str.h index 662cbe7..0ef49a6 100644 --- a/libc/inc/str.h +++ b/libc/inc/str.h @@ -8,8 +8,8 @@ u32 strlen(const char *s); char *strcpy(char *dst, const char *src); char *strncpy(char *dst, const char *src, u32 n); -char *strchr(const char *s, int c); -char *strrchr(const char *s, int c); +char *strchr(char *s, int c); +char *strrchr(char *s, int c); char *strcat(char *dst, const char *src); char *strncat(char *dst, const char *src, u32 n); int strcmp(const char *s1, const char *s2); |