📄 inode.h
字号:
#ifndef INODE_H#define INODE_H// Inode, Itable class#define MAX_INODE_BLK 7 #define MAX_INODE_ITABLE 16struct Inode { // each inode has 32 bytes. short ino; short num_blk; //number of blocks assigned to this inode long blk[MAX_INODE_BLK]; // max 7 blocks per file};struct ITable{ // 16 inodes in inode table struct Inode arr[MAX_INODE_ITABLE];};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -