Rev 1653 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1653 | Rev 1709 | ||
---|---|---|---|
Line 77... | Line 77... | ||
77 | } |
77 | } |
78 | 78 | ||
79 | /** Insert item into hash table. |
79 | /** Insert item into hash table. |
80 | * |
80 | * |
81 | * @param h Hash table. |
81 | * @param h Hash table. |
82 | * @param hey Array of all keys necessary to compute hash index. |
82 | * @param key Array of all keys necessary to compute hash index. |
83 | * @param item Item to be inserted into the hash table. |
83 | * @param item Item to be inserted into the hash table. |
84 | */ |
84 | */ |
85 | void hash_table_insert(hash_table_t *h, unsigned long key[], link_t *item) |
85 | void hash_table_insert(hash_table_t *h, unsigned long key[], link_t *item) |
86 | { |
86 | { |
87 | hash_index_t chain; |
87 | hash_index_t chain; |