📄 file.h
字号:
/* * Structure of an element of the file table. */struct file { short f_mode; short f_ndup; /* no. fd's pointing here */ short f_type; short f_dev; struct inode *f_inode; long f_curblk; /* Current block number */ short f_curchar; struct dev *f_handler; struct file *f_pipelink; /* Other end of pipe file entry */};/* * Values of 'f_mode'. */# define READABLE 1# define WRITEABLE 2# define PIPE 4/* * Values of 'f_type' field. */# define STD 0# define B_SPECL 1# define C_SPECL 2
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -