Function stdio_memcpy
Defined in File string.h
Function Documentation
-
void *stdio_memcpy(void *dest, const void *src, size_t n)
Copy memory.
This routine copies n bytes from the the memory pointed to by src to the memory pointed to by dest. The memory areas must NOT overlap.
- Parameters:
dest – Destination of copy.
src – Source of copy.
n – # of bytes to copy.
- Returns:
Memory pointed to by dest.