跳转到内容

memmove : 移动可能重叠的内存

#include <string.h>
void *memmove(void *dst, const void *src, size_t length);
```### 描述
此函数将长度为 length 个字符的数据从起始于 *src 的内存块移动到起始于 *dst 的内存中。memmove 即使在这两个区域重叠的情况下,也能在 *dst 处正确复现这些字符。### 返回值
该函数返回传入的 dst。
---
**权威来源**: BUSMASTER DITA help source `memmove.dita`, compiled into `BUSMASTER.CHM` with the application.