binaryninja/personal/scc-docs/free.txt

14 lines
304 B
Plaintext
Raw Normal View History

2019-04-03 14:46:40 +01:00
free
====
:title: Shellcode Compiler Runtime
---------------------------------------------
void free(void* ptr);
---------------------------------------------
Frees the buffer pointed to by `ptr`. The provided buffer must have been allocated with `malloc`.
See also
--------
link:malloc.html[malloc]