libc: core: implement memcmp and memmove
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
#include <stddef.h>
|
||||
|
||||
int memcmp(const void *vl, const void *vr, size_t n)
|
||||
{
|
||||
const unsigned char *l = vl, *r = vr;
|
||||
for (; n && *l == *r; n--, l++, r++)
|
||||
;
|
||||
return n ? *l - *r : 0;
|
||||
}
|
||||
Reference in New Issue
Block a user