binaryninja/personal/scc-docs/fgetc.txt

15 lines
349 B
Plaintext
Raw Normal View History

2019-04-03 14:46:40 +01:00
fgetc
=====
:title: Shellcode Compiler Runtime
---------------------------------------------
int fgetc(FILE* fp);
---------------------------------------------
Reads the next byte from the file stream `fp`. If the current position was at the end of the file, `EOF` is returned.
See also
--------
link:fdopen.html[fdopen],
link:fgets.html[fgets]