memcpy

void *memcpy(void *restrict dest, const void *restrict src, size_t n);

memmove

void *memmove(void *dest, const void *src, size_t n);

memmove 구현

Screen Shot 2022-11-09 at 10.36.04 AM.png

출처 : https://hand-over.tistory.com/47