⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 file.h

📁 模拟DOS下FAT表的构造
💻 H
字号:
#ifndef _FILE
#define _FILE

#include<stdio.h>
#include<string.h>
#include<iostream.h>


const int FILENAMELEN=20;//文件名最大长度
const int DISC=100;//存储空间(FAT表长度)
const int FILENUM=10;//文件个数

const int FDF=-2;
const int FFF=-1;

//文件信息结构
typedef struct file{
	char filename[FILENAMELEN];
	int filestart;
	int filelen;
}fileinfo;


#endif

⌨️ 快捷键说明

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