summaryrefslogtreecommitdiff
path: root/set.c
diff options
context:
space:
mode:
Diffstat (limited to 'set.c')
-rw-r--r--set.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/set.c b/set.c
index 74137b775f..5e23c20efa 100644
--- a/set.c
+++ b/set.c
@@ -26,6 +26,10 @@ int set_put(Set *s, void *value) {
return hashmap_put(MAKE_HASHMAP(s), value, value);
}
+int set_replace(Set *s, void *value) {
+ return hashmap_replace(MAKE_HASHMAP(s), value, value);
+}
+
void *set_get(Set *s, void *value) {
return hashmap_get(MAKE_HASHMAP(s), value);
}