inode.h
来自「用于汇编领域的,运用于OS的MAIN函数.基于硬件基础的源代码」· C头文件 代码 · 共 23 行
H
23 行
#ifndef INODE_H#define INODE_H// Inode, Itable class//#define MAX_INODE_BLK 7 #define MAX_INODE_ITABLE 32 struct Inode { // each inode has 128 bytes. int ino; // inode number struct Ext2Inode * inode;};struct ITable{ // 16 inodes in inode table struct Inode arr[MAX_INODE_ITABLE];};struct Inode * ITable_get_free_inode();#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?