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

15 lines
382 B
Plaintext

alloca
======
:title: Shellcode Compiler Runtime
---------------------------------------------
void* alloca(size_t size);
---------------------------------------------
Allocates `size` bytes on the current stack frame, and returns a pointer to the new buffer. The returned buffer
is no longer valid after the current function returns.
See also
--------
link:malloc.html[malloc]