summaryrefslogtreecommitdiff
path: root/src/libc/include/string.h
diff options
context:
space:
mode:
authordzwdz2023-08-24 19:10:35 +0200
committerdzwdz2023-08-24 19:10:35 +0200
commit3e09037780ca95633749be3acd52e817eed7f98c (patch)
tree83bcf5026cd4383809c81c5f38473a6b1e46755e /src/libc/include/string.h
parent292b2386d766826b15f5ca084d37aa2c485fdda6 (diff)
libc: get most of binutils to compile
Diffstat (limited to 'src/libc/include/string.h')
-rw-r--r--src/libc/include/string.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libc/include/string.h b/src/libc/include/string.h
index 78bed9b..d9d2b74 100644
--- a/src/libc/include/string.h
+++ b/src/libc/include/string.h
@@ -17,8 +17,10 @@ int strcoll(const char *s1, const char *s2);
char *strstr(const char *s1, const char *s2);
+char *strcat(char *restrict dst, const char *restrict src);
char *strcpy(char *restrict s1, const char *restrict s2);
char *strncpy(char *restrict s1, const char *restrict s2, size_t n);
+char *strncat(char *restrict dst, const char *restrict src, size_t n);
char *stpncpy(char *restrict dst, const char *restrict src, size_t n);
char *strdup(const char *s);