ref: 339c577e4428f7beefd82ce7eaa0d54a0e28c386
dir: /libc/src/memmove.c/
/* See LICENSE file for copyright and license details. */
#include <string.h>
#undef memmove
void *
memmove(void *dst, const void *src, size_t n)
{
char *d = dst, *s = (char *) src;
if (d < s) {
while (n-- > 0)
*d++ = *s++;
} else {
s += n-1, d += n-1;
while (n-- > 0)
*d-- = *s--;
}
return dst;
}