aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/mlibc/string
diff options
context:
space:
mode:
authorMarvin Borner2019-12-18 17:59:22 +0100
committerMarvin Borner2019-12-18 17:59:22 +0100
commit07530dd08e0b29573712b54543a7fc42672bb34b (patch)
tree3026395a952e66a489b3fcf24a89d64f2bb6198c /src/userspace/mlibc/string
parent025709e8643eb24e3360e575564b34ebd8062fd7 (diff)
Added very basic command support
Diffstat (limited to 'src/userspace/mlibc/string')
-rw-r--r--src/userspace/mlibc/string/memcmp.c14
-rw-r--r--src/userspace/mlibc/string/memcpy.c9
-rw-r--r--src/userspace/mlibc/string/memset.c8
3 files changed, 31 insertions, 0 deletions
diff --git a/src/userspace/mlibc/string/memcmp.c b/src/userspace/mlibc/string/memcmp.c
new file mode 100644
index 0000000..af2125c
--- /dev/null
+++ b/src/userspace/mlibc/string/memcmp.c
@@ -0,0 +1,14 @@
+#include <stddef.h>
+
+int memcmp(const void *a_ptr, const void *b_ptr, size_t size)
+{
+ const unsigned char *a = (const unsigned char *) a_ptr;
+ const unsigned char *b = (const unsigned char *) b_ptr;
+ for (size_t i = 0; i < size; i++) {
+ if (a[i] < b[i])
+ return -1;
+ else if (b[i] < a[i])
+ return 1;
+ }
+ return 0;
+} \ No newline at end of file
diff --git a/src/userspace/mlibc/string/memcpy.c b/src/userspace/mlibc/string/memcpy.c
new file mode 100644
index 0000000..e4e9c76
--- /dev/null
+++ b/src/userspace/mlibc/string/memcpy.c
@@ -0,0 +1,9 @@
+#include <stddef.h>
+
+void *memcpy(void *dest, const void *src, size_t count)
+{
+ const char *sp = (const char *) src;
+ char *dp = (char *) dest;
+ for (; count != 0; count--) *dp++ = *sp++;
+ return dest;
+} \ No newline at end of file
diff --git a/src/userspace/mlibc/string/memset.c b/src/userspace/mlibc/string/memset.c
new file mode 100644
index 0000000..fb5ab80
--- /dev/null
+++ b/src/userspace/mlibc/string/memset.c
@@ -0,0 +1,8 @@
+#include <stddef.h>
+
+void *memset(void *dest, char val, size_t count)
+{
+ char *temp = (char *) dest;
+ for (; count != 0; count--) *temp++ = val;
+ return dest;
+} \ No newline at end of file