fix wrong return value from wmemmove on forward copies
[musl] / src / string / memcmp.c
1 #include <string.h>
2
3 int memcmp(const void *vl, const void *vr, size_t n)
4 {
5         const unsigned char *l=vl, *r=vr;
6         for (; n && *l == *r; n--, l++, r++);
7         return n ? *l-*r : 0;
8 }