binaryninja/commercial/scc-docs/fputs.txt

15 lines
378 B
Plaintext
Raw Normal View History

2018-12-13 18:39:52 +00:00
fputs
=====
:title: Shellcode Compiler Runtime
---------------------------------------------
int fputs(const char* str, FILE* fp);
---------------------------------------------
Writes the string `str` to the file stream `fp`. Returns the number of bytes written, or the negation of the error code on error.
See also
--------
link:fdopen.html[fdopen],
link:fputc.html[fputc]