?? hash.h
字號:
typedef struct _hashelem
{
char *name;
struct _hashelem *next;
struct _column *col;
struct _bound *bnd;
int must_be_int;
int index; /* for row and column name hash tables */
} hashelem;
typedef struct _hashtable
{
hashelem **table;
int size;
} hashtable;
hashtable *create_hash_table(int size);
void free_hash_table(hashtable *ht);
hashelem *findhash(const char *name, hashtable *ht);
hashelem *puthash(const char *name, hashtable *ht);
hashtable *copy_hash_table(hashtable *ht);
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -