binaryninja/personal/scc-docs/vsprintf.txt

16 lines
496 B
Plaintext
Raw Normal View History

2019-04-03 14:46:40 +01:00
vsprintf
========
:title: Shellcode Compiler Runtime
---------------------------------------------
int vsprintf(char* out, const char* fmt, va_list va);
---------------------------------------------
Writes a formatted string with format `fmt` to the string `out`. Uses the argument list `va` as the source of arguments
referenced by the format string. See the link:format.html[format specifier reference]
for the supported format specifiers.
See also
--------
link:vsnprintf.html[vsnprintf]