symtab.h

来自「鼎力推荐!本程序是基于嵌入式LUNUX系统开发的源程序代码」· C头文件 代码 · 共 24 行

H
24
字号
/* * A symbol table (symtab) maintains associations between symbol * strings and datum values.  The type of the datum values * is arbitrary.  The symbol table type is implemented * using the hash table type (hashtab). * * Author : Stephen Smalley, <sds@epoch.ncsc.mil> */#ifndef _SS_SYMTAB_H_#define _SS_SYMTAB_H_#include "hashtab.h"struct symtab {	struct hashtab *table;	/* hash table (keyed on a string) */	u32 nprim;		/* number of primary names in table */};int symtab_init(struct symtab *s, unsigned int size);#endif	/* _SS_SYMTAB_H_ */

⌨️ 快捷键说明

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