binaryninja/scc-docs/memcpy.txt
Giulio De Pasquale 52e9dc828b dindon
2018-12-13 18:39:52 +00:00

17 lines
421 B
Plaintext

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]