fileptr.h

来自「用于汇编领域的,运用于OS的MAIN函数.基于硬件基础的源代码」· C头文件 代码 · 共 15 行

H
15
字号
#ifndef FILEPTR_H#define FILEPTR_H#define MAX_FPT 32struct FilePtr{   int nlink;   int pos;   int type;   struct inode *iptr;};struct FPTable{   struct FilePtr arr[MAX_FPT]; // max 32 file opened in the system};   #endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?