跳轉到內容

C++ 程式設計/程式碼/標準 C 庫/函式/memmove

來自華夏公益教科書,自由的教科書
語法
#include <cstring>
void *memmove( void *to, const void *from, size_t count );

memmove() 函式與 memcpy() 相同,區別在於即使 tofrom 重疊,它也能正常工作。

相關主題
memcpy - memset
華夏公益教科書