Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/adt/hash_table.c

    r5e801dc r36795edf  
    5252#include <adt/list.h>
    5353#include <assert.h>
     54#include <member.h>
    5455#include <stdlib.h>
    5556#include <str.h>
     
    331332}
    332333
    333 /** Removes an item already present in the table. The item must be in the table.*/
     334/** Removes an item already present in the table. The item must be in the table. */
    334335void hash_table_remove_item(hash_table_t *h, ht_link_t *item)
    335336{
     
    393394}
    394395
    395 /** Allocates and initializes the desired number of buckets. True if successful.*/
     396/** Allocates and initializes the desired number of buckets. True if successful. */
    396397static bool alloc_table(size_t bucket_cnt, list_t **pbuckets)
    397398{
Note: See TracChangeset for help on using the changeset viewer.