📄 indxlook.h
字号:
/*** INDXLOOK.H**** SNIPPETS header file for INDEX.C and LOOKUP.C**** public domain by Mark Corgan*/#include "sniptype.h" /* for True_, False_, Boolean_T */#define MAX_LINE 40 /* maximum line length */#define MAX_KEY 26 /* maximum key size */#define END_REC ".\n" /* end of a record */struct index_rec /* index record */{ char key[MAX_KEY]; /* name */ long pos; /* position */};typedef struct index_rec INDEX;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -