#include <cstring> void *memmove( void *to, const void *from, size_t count );
memmove() 函式與 memcpy() 相同,區別在於即使 to 和 from 重疊,它也能正常工作。