»Home
»Examples
»Invocation
»Runtime Library
»Python Bindings
»Known Issues
Shellcode Compiler
A custom shellcode compiler for Binary Ninja
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