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

16 lines
484 B
Plaintext

__prev_arg
==========
:title: Shellcode Compiler Runtime
---------------------------------------------
void* __prev_arg(void* ptr, size_t size);
---------------------------------------------
Returns a pointer to the previous argument given the pointer to the current argument, `ptr`, and
the size of the previous argument, `size`. This intrinsic can be used to find the previous
argument regardless of the direction of stack growth.
See also
--------
link:next_arg.html[next_arg]