From 975dc11bbf2edfd7f30f98c17f593058368a30c0 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 3 May 2021 00:01:49 +0200 Subject: PURE --- libs/libc/inc/str.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'libs') diff --git a/libs/libc/inc/str.h b/libs/libc/inc/str.h index 542e586..f024aaa 100644 --- a/libs/libc/inc/str.h +++ b/libs/libc/inc/str.h @@ -5,29 +5,29 @@ #include -u32 strlen(const char *s) NONNULL; -u32 strnlen(const char *s, u32 max) NONNULL; +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; -char *strchr(char *s, char c) NONNULL; -char *strrchr(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; s32 strcmp(const char *s1, const char *s2) NONNULL; s32 strncmp(const char *s1, const char *s2, u32 n) NONNULL; char *strinv(char *s) NONNULL; -char *strdup(const char *s) NONNULL; +ATTR((malloc)) char *strdup(const char *s) NONNULL; #ifdef KERNEL -u32 strlen_user(const char *s) NONNULL; -u32 strnlen_user(const char *s, u32 max) 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; -char *strchr_user(char *s, char c) NONNULL; -char *strrchr_user(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; s32 strcmp_user(const char *s1, const char *s2) NONNULL; s32 strncmp_user(const char *s1, const char *s2, u32 n) NONNULL; char *strinv_user(char *s) NONNULL; -char *strdup_user(const char *s) NONNULL; +ATTR((malloc)) char *strdup_user(const char *s) NONNULL; #endif -- cgit v1.2.3