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/memcmp.c | |
parent | 025709e8643eb24e3360e575564b34ebd8062fd7 (diff) |
Added very basic command support
Diffstat (limited to 'src/userspace/mlibc/string/memcmp.c')
-rw-r--r-- | src/userspace/mlibc/string/memcmp.c | 14 |
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 |