binaryninja/personal/scc-docs/fchmod.txt

15 lines
353 B
Plaintext
Raw Normal View History

2019-04-03 14:46:40 +01:00
fchmod
======
:title: Shellcode Compiler Runtime
---------------------------------------------
int fchmod(int fd, mode_t mode);
---------------------------------------------
Changes the file permissions for the file handle `fd` to `mode`. Returns zero on success, or the
negation of the error code on error.
See also
--------
link:chmod.html[chmod]