- Function
Copy a memory area.
- Header
- Declaration
void* __fastcall__ memmove (void* dest, const void* src, size_t count);- Description
memmovecopiescountbytes from the memory area pointed to bysrcinto the memory area pointed to bydest. It returnsdest.- Limits
- While
memmoveallows the memory areas to overlap, it has some additional overhead compared tomemcpy.- The function is only available as fastcall function, so it may only be used in presence of a prototype.
- Availability
ISO 9899
- See also
- Example
None.