Changeset 9179d0a in mainline for generic/src/adt/hash_table.c
- Timestamp:
- 2006-04-27T17:13:49Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 040e4e9
- Parents:
- eaa202a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/adt/hash_table.c
reaa202a r9179d0a 27 27 */ 28 28 29 /* 30 * This is an implementation of generic chained hash table. 29 /** 30 * @file hash_table.c 31 * @brief Implementation of generic chained hash table. 32 * 33 * This file contains implementation of generic chained hash table. 31 34 */ 32 35 … … 126 129 * @param h Hash table. 127 130 * @param key Array of keys that will be compared against items of the hash table. 128 * @param keys Number of keys in the 'key'array.131 * @param keys Number of keys in the key array. 129 132 */ 130 133 void hash_table_remove(hash_table_t *h, __native key[], count_t keys)
Note:
See TracChangeset
for help on using the changeset viewer.