================ KeywordHash_Add ================ */
| 1239 | ================ |
| 1240 | */ |
| 1241 | void KeywordHash_Add(keywordHash_t *table[], keywordHash_t *key) |
| 1242 | { |
| 1243 | int hash; |
| 1244 | |
| 1245 | hash = KeywordHash_Key(key->keyword); |
| 1246 | key->next = table[hash]; |
| 1247 | table[hash] = key; |
| 1248 | } |
| 1249 | |
| 1250 | /* |
| 1251 | =============== |
no test coverage detected