diff options
author | Marvin Borner | 2021-05-24 18:50:55 +0200 |
---|---|---|
committer | Marvin Borner | 2021-05-24 19:05:59 +0200 |
commit | 91ba8d02037cc27c7b44f1bfd492c42ccd0af042 (patch) | |
tree | 4006f8b37c2e70ddceb6fbb70dd2c690c5cf6035 /libs/libc/inc/str.h | |
parent | a0a1b1318dc886c72eaf60792dbb40f1ea3eeb97 (diff) |
Added more tests and fixed dumb bugs
typical
Diffstat (limited to 'libs/libc/inc/str.h')
-rw-r--r-- | libs/libc/inc/str.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/libc/inc/str.h b/libs/libc/inc/str.h index f024aaa..6b5d16f 100644 --- a/libs/libc/inc/str.h +++ b/libs/libc/inc/str.h @@ -8,6 +8,8 @@ PURE u32 strlen(const char *s) NONNULL; PURE u32 strnlen(const char *s, u32 max) NONNULL; u32 strlcpy(char *dst, const char *src, u32 size) NONNULL; +PURE const char *strcchr(const char *s, char c) NONNULL; +PURE const char *strrcchr(const char *s, char c) NONNULL; PURE char *strchr(char *s, char c) NONNULL; PURE char *strrchr(char *s, char c) NONNULL; u32 strlcat(char *dst, const char *src, u32 size) NONNULL; @@ -21,6 +23,8 @@ ATTR((malloc)) char *strdup(const char *s) NONNULL; PURE u32 strlen_user(const char *s) NONNULL; PURE u32 strnlen_user(const char *s, u32 max) NONNULL; u32 strlcpy_user(char *dst, const char *src, u32 size) NONNULL; +PURE const char *strcchr_user(const char *s, char c) NONNULL; +PURE const char *strrcchr_user(const char *s, char c) NONNULL; PURE char *strchr_user(char *s, char c) NONNULL; PURE char *strrchr_user(char *s, char c) NONNULL; u32 strlcat_user(char *dst, const char *src, u32 size) NONNULL; |