binaryninja/personal/scc-docs/memcpy.txt

17 lines
421 B
Plaintext
Raw Normal View History

2019-04-03 14:46:40 +01:00
memcpy
======
:title: Shellcode Compiler Runtime
---------------------------------------------
void* memcpy(void* dest, const void* src, size_t len);
---------------------------------------------
Copies `len` bytes from `src` to `dest`. Returns a pointer to `dest`.
IMPORTANT: If the source and destination might overlap, use `memmove` instead.
See also
--------
link:memmove.html[memmove],
link:memset.html[memset]