?? file.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;//文件個數(shù)
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 + -