📄 fchmod.c
字号:
#include <stdio.h>#include <unistd.h>#include <compat.h>intfchmod(fd, mode) int fd; u_int mode;{ char *tty; /* Find the tty. */ if ((tty = ttyname(fd)) == NULL) return (-1); return (chmod(tty, mode));}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -