?? hash.h
字號:
#ifndef _HASH_H
#define _HASH_H
/* Local hash table functions. Librarian uses a different set of functions */
/* Size is a prime number */
#define HASHSIZE 1021
/* Rotations in C */
#define ROTR(x,bits) (((x << (16 - bits)) | (x >> bits)) & 0xffff)
#define ROTL(x,bits) (((x << bits) | (x >> (16 - bits))) & 0xffff)
/* Hash table record definition, all entries in a hash table must be
* structures with the first two elements as given because hash table
* entries are sometimes handled generically */
typedef struct _hashrec_ {
struct _hashrec_ *link; /* Link to next element in list */
char *key; /* Full key */
} HASHREC;
#include "hash.p"
#endif _HASH_H
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -