aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/mlibc/string/memcmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/userspace/mlibc/string/memcmp.c')
-rw-r--r--src/userspace/mlibc/string/memcmp.c14
1 files changed, 14 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