binaryninja/commercial/scc-docs/pipe.txt

16 lines
354 B
Plaintext
Raw Normal View History

2018-12-13 18:39:52 +00:00
pipe
====
:title: Shellcode Compiler Runtime
---------------------------------------------
int pipe(int fds[2]);
---------------------------------------------
Creates a new pipe. The first file handle is the "read" end, and the second file handle is the "write" end.
See also
--------
link:close.html[close],
link:dup.html[dup],
link:dup2.html[dup2]