#include <cstring> void *memmove( void *to, const void *from, size_t count );
memmove() 函数与 memcpy() 相同,区别在于即使 to 和 from 重叠,它也能正常工作。