»Home
»Examples
»Invocation
»Runtime Library
»Python Bindings
»Known Issues
Shellcode Compiler
A custom shellcode compiler for Binary Ninja
FILE* fdopen(int fd);

Opens a file stream using file handle fd. Returns the file stream.

Tip File stream pointers (FILE*) are actually just file handles cast to a pointer type. The implementation of this function is actually a simple macro with a direct cast to the FILE* type.

See also