binaryninja/commercial/scc-docs/memset.txt

14 lines
318 B
Plaintext
Raw Normal View History

2018-12-13 18:39:52 +00:00
memset
======
:title: Shellcode Compiler Runtime
---------------------------------------------
void* memset(void* dest, uint8_t value, size_t len);
---------------------------------------------
Sets `len` bytes in `dest` to the value `value`. Returns the pointer `dest`.
See also
--------
link:memcpy.html[memcpy]