Rev 1704 | Rev 1757 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1704 | Rev 1708 | ||
|---|---|---|---|
| Line 75... | Line 75... | ||
| 75 | } |
75 | } |
| 76 | 76 | ||
| 77 | /** Insert item into hash table. |
77 | /** Insert item into hash table. |
| 78 | * |
78 | * |
| 79 | * @param h Hash table. |
79 | * @param h Hash table. |
| 80 | * @param hey Array of all keys necessary to compute hash index. |
80 | * @param key Array of all keys necessary to compute hash index. |
| 81 | * @param item Item to be inserted into the hash table. |
81 | * @param item Item to be inserted into the hash table. |
| 82 | */ |
82 | */ |
| 83 | void hash_table_insert(hash_table_t *h, __native key[], link_t *item) |
83 | void hash_table_insert(hash_table_t *h, __native key[], link_t *item) |
| 84 | { |
84 | { |
| 85 | index_t chain; |
85 | index_t chain; |