📄 fs.h
字号:
#ifndef FS_H#define FS_H#define SECT_PER_BLOCK 2#define BLKSIZE (512*SECT_PER_BLOCK) #include "ext2-inode.h"#include "dir.h"#include "bit-vect.h"#include "fd.h"#include "file-block.h"#include "fileptr.h"#include "inode.h"extern struct BitVect * d_ibm;extern struct BitVect * d_dbm;extern struct Inode *root;extern struct DITable d_itable;extern struct ITable itable;extern struct FBTable fbtable;extern struct FPTable fptable;extern char * FBTable_find_block(int);#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -