binaryninja/commercial/scc-docs/memcpy.txt

17 lines
421 B
Plaintext
Raw Normal View History

2018-12-13 18:39:52 +00: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]