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

📄 type.h

📁 包含8个文件:type.h, borrow.c, createfile.c, MainMenuControl.C, reader.c, readfile.c, search.c, writefile.
💻 H
字号:
typedef struct
{
	char bno[5];
	char bname[21];
	int namenext;
	char author[9];
	int authnext;
	char press[11];
	int prenext;
	char sortno[4];
	int storenum;
	int borrownum;
}BookRecType;
typedef struct
{
	BookRecType BookDbase[BookSize];
	int len;
}BookDbaseFile;
typedef struct
{
	char bno[5];
	int RecNo;
}BidxRecType;
typedef struct
{
	BidxRecType BnoIdx[BookSize];
	int len;
}BnoIdxFile;
typedef struct
{
	char bname[21];
	int lhead;
	int RecNum;
}BNRecType;
typedef struct
{
	BNRecType LHFrec1[BLHnum];
	int len1;
}LHFile1;
typedef struct
{
	char author[9];
	int lhead;
	int RecNum;
}BARecType;
typedef struct
{
	BARecType LHFrec2[BLHnum];
	int len2;
}LHFile2;
typedef struct
{
	char press[11];
	int lhead;
	int RecNum;
}BPRecType;
typedef struct
{
	BPRecType LHFrec3[BLHnum];
	int len3;
}LHFile3;
typedef struct
{
	char rno[4];
	char name[8];
	int bn1;
	int bn2;
}RRecType;
typedef struct
{
	RRecType ReadRec[RRnum];
	int len;
}ReadFile;
typedef struct
{
	char rno[4];
	char bno[5];
	char date1[9];
	char date2[9];
}BbookRecType;
typedef struct
{
	BbookRecType Bbook[BookSize];
	int len;
}BbookFile;

⌨️ 快捷键说明

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