1 /* different kinds of things that can appear in the value field
2 of a hash node. Actually, this may be useless now. */
13 struct hashnode
*next
; /* double links for easy deletion */
14 struct hashnode
*prev
;
15 struct hashnode
**bucket_hdr
; /* also, a back pointer to this node's hash
16 chain is kept, in case the node is the head
17 of the chain and gets deleted. */
18 enum node_type type
; /* type of special token */
19 int length
; /* length of token, for quick comparison */
20 U_CHAR
*name
; /* the actual name */
21 union hashval value
; /* pointer to expansion, or whatever */
24 typedef struct hashnode HASHNODE
;
26 /* Some definitions for the hash table. The hash function MUST be
27 computed as shown in hashf () below. That is because the rescan
28 loop computes the hash value `on the fly' for most tokens,
29 in order to avoid the overhead of a lot of procedure calls to
30 the hashf () function. Hashf () only exists for the sake of
31 politeness, for use when speed isn't so important. */
34 #define HASHSTEP(old, c) ((old << 2) + c)
35 #define MAKE_POS(v) (v & 0x7fffffff) /* make number positive */
37 extern HASHNODE
*install
PARAMS ((U_CHAR
*,int,enum node_type
, int,char *,int));
38 extern int hashf
PARAMS ((const U_CHAR
*, int, int));
39 extern void delete_macro
PARAMS ((HASHNODE
*));