![]() |
memcpy | Function (ROM Call 0x26A) |
mem.h, string.h |
void *memcpy (void *dest, const void *src, unsigned long len); |
Copies a block of len bytes from src to dest.
memcpy copies a block of len bytes from src to dest. If src and dest overlap, the memcpy is ill-behaved (in such case, use memmove instead). memcpy returns dest.