diff options
author | Marvin Borner | 2019-12-18 17:59:22 +0100 |
---|---|---|
committer | Marvin Borner | 2019-12-18 17:59:22 +0100 |
commit | 07530dd08e0b29573712b54543a7fc42672bb34b (patch) | |
tree | 3026395a952e66a489b3fcf24a89d64f2bb6198c /src/userspace/mlibc/string.h | |
parent | 025709e8643eb24e3360e575564b34ebd8062fd7 (diff) |
Added very basic command support
Diffstat (limited to 'src/userspace/mlibc/string.h')
-rw-r--r-- | src/userspace/mlibc/string.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/userspace/mlibc/string.h b/src/userspace/mlibc/string.h index fe925cb..153b7cb 100644 --- a/src/userspace/mlibc/string.h +++ b/src/userspace/mlibc/string.h @@ -19,4 +19,10 @@ char *strdup(const char *orig); void strinv(char *str); +void *memcpy(void *dest, const void *src, size_t count); + +void *memset(void *dest, char val, size_t count); + +int memcmp(const void *a_ptr, const void *b_ptr, size_t size); + #endif |