summaryrefslogtreecommitdiffstats
path: root/src/install/hashmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/install/hashmap.h')
-rw-r--r--src/install/hashmap.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/install/hashmap.h b/src/install/hashmap.h
index 2537c49..77dbd54 100644
--- a/src/install/hashmap.h
+++ b/src/install/hashmap.h
@@ -51,6 +51,7 @@ int hashmap_ensure_allocated(Hashmap **h, hash_func_t hash_func, compare_func_t
int hashmap_put(Hashmap *h, const void *key, void *value);
int hashmap_replace(Hashmap *h, const void *key, void *value);
void *hashmap_get(Hashmap *h, const void *key);
+int hashmap_get_exists(Hashmap *h, const void *key, void **value);
void *hashmap_remove(Hashmap *h, const void *key);
void *hashmap_remove_value(Hashmap *h, const void *key, void *value);
int hashmap_remove_and_put(Hashmap *h, const void *old_key, const void *new_key, void *value);