- Function
Copy a memory area.
- Header
- Declaration
void* __fastcall__ memcpy (void* dest, const void* src, size_t count);- Description
memcpycopiescountbytes from the memory area pointed to bysrcinto the memory area pointed to bydest. It returnsdest.- Limits
- The result is undefined if the memory areas do overlap. Use
memmoveto copy overlapping memory areas.- 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.