X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fshared%2Fhashmap.h;h=3d4f6721bc9efc1b5c32e34576b11658d76765c1;hb=05d3a176239c1dd67863c70a5b79d9bc14144ef6;hp=8f6e644b25d6a816506e6f07ad9c9338c8fe091c;hpb=44a6b1b68029833893f6e9cee35aa27a974038f6;p=elogind.git diff --git a/src/shared/hashmap.h b/src/shared/hashmap.h index 8f6e644b2..3d4f6721b 100644 --- a/src/shared/hashmap.h +++ b/src/shared/hashmap.h @@ -43,6 +43,9 @@ typedef int (*compare_func_t)(const void *a, const void *b); unsigned string_hash_func(const void *p) _pure_; int string_compare_func(const void *a, const void *b) _pure_; +/* This will compare the passed pointers directly, and will not + * dereference them. This is hence not useful for strings or + * suchlike. */ unsigned trivial_hash_func(const void *p) _const_; int trivial_compare_func(const void *a, const void *b) _const_; @@ -73,6 +76,7 @@ int hashmap_move_one(Hashmap *h, Hashmap *other, const void *key); unsigned hashmap_size(Hashmap *h) _pure_; bool hashmap_isempty(Hashmap *h) _pure_; +unsigned hashmap_buckets(Hashmap *h) _pure_; void *hashmap_iterate(Hashmap *h, Iterator *i, const void **key); void *hashmap_iterate_backwards(Hashmap *h, Iterator *i, const void **key);