binaryninja/personal/scc-docs/fputc.txt

15 lines
366 B
Plaintext
Raw Normal View History

2019-04-03 14:46:40 +01:00
fputc
=====
:title: Shellcode Compiler Runtime
---------------------------------------------
int fputc(int ch, FILE* fp);
---------------------------------------------
Writes the byte `ch` 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:fputs.html[fputs]