diff options
Diffstat (limited to 'payloads/libpayload')
-rw-r--r-- | payloads/libpayload/include/string.h | 2 | ||||
-rw-r--r-- | payloads/libpayload/libc/string.c | 40 |
2 files changed, 0 insertions, 42 deletions
diff --git a/payloads/libpayload/include/string.h b/payloads/libpayload/include/string.h index 7762c36b67..b0028228eb 100644 --- a/payloads/libpayload/include/string.h +++ b/payloads/libpayload/include/string.h @@ -53,8 +53,6 @@ int strcasecmp(const char *s1, const char *s2); int strncasecmp(const char *s1, const char *s2, size_t maxlen); char *strncpy(char *d, const char *s, size_t n); char *strcpy(char *d, const char *s); -char *strncat(char *d, const char *s, size_t n); -char *strcat(char *d, const char *s); char *strchr(const char *s, int c); char *strrchr(const char *s, int c); char *strdup(const char *s); diff --git a/payloads/libpayload/libc/string.c b/payloads/libpayload/libc/string.c index f9805e39bf..a1b7d4d59d 100644 --- a/payloads/libpayload/libc/string.c +++ b/payloads/libpayload/libc/string.c @@ -153,46 +153,6 @@ char *strcpy(char *d, const char *s) } /** - * Concatenates two strings - * - * @param d The destination string. - * @param s The source string. - * @return A pointer to the destination string. - */ -char *strcat(char *d, const char *s) -{ - char *p = d + strlen(d); - size_t sl = strlen(s); - - for (size_t i = 0; i < sl; i++) - p[i] = s[i]; - - p[sl] = '\0'; - return d; -} - -/** - * Concatenates two strings with a maximum length. - * - * @param d The destination string. - * @param s The source string. - * @param n Not more than n characters from s will be appended to d. - * @return A pointer to the destination string. - */ -char *strncat(char *d, const char *s, size_t n) -{ - char *p = d + strlen(d); - size_t sl = strlen(s); - size_t max = n > sl ? sl : n; - - for (size_t i = 0; i < max; i++) - p[i] = s[i]; - - p[max] = '\0'; - return d; -} - -/** * Concatenates two strings with a maximum length. * * @param d The destination string. |