Changeset 0c48e14 in mainline for uspace/lib/c/generic/adt/hash_table.c
- Timestamp:
- 2019-02-24T15:45:40Z (6 years ago)
- Children:
- 91bef446
- Parents:
- 52b44c6
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-02-02 15:07:29)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-02-24 15:45:40)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/adt/hash_table.c
r52b44c6 r0c48e14 245 245 * 246 246 */ 247 ht_link_t *hash_table_find(const hash_table_t *h, void *key)247 ht_link_t *hash_table_find(const hash_table_t *h, const void *key) 248 248 { 249 249 assert(h && h->bucket); … … 307 307 * @return Returns the number of removed items. 308 308 */ 309 size_t hash_table_remove(hash_table_t *h, void *key)309 size_t hash_table_remove(hash_table_t *h, const void *key) 310 310 { 311 311 assert(h && h->bucket);
Note:
See TracChangeset
for help on using the changeset viewer.