📄 snhash.h
字号:
/* snhash.h */
struct snhnode { /* hash table node structure */
struct mib_info *sh_mip; /* points to a mib record */
struct snhnode *sh_next; /* next node in this hash bucket*/
};
#define S_HTABSIZ 101 /* hash table size - a prime # */
#define S_HTRADIX 21 /* hash table radix */
#define S_NUMTABS 7 /* number of table objects */
extern struct snhnode *snhtab[]; /* the hash table */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -