binaryninja/personal/scc-docs/sprintf.txt

15 lines
395 B
Plaintext
Raw Normal View History

2019-04-03 14:46:40 +01:00
sprintf
=======
:title: Shellcode Compiler Runtime
---------------------------------------------
int sprintf(char* out, const char* fmt, ...);
---------------------------------------------
Writes a formatted string with format `fmt` to the string `out`. See the link:format.html[format specifier reference]
for the supported format specifiers.
See also
--------
link:snprintf.html[snprintf]