X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=set.c;h=efd20db536bda44c6b3e22c6d6f4ceaf9f102d6e;hp=b94ea447f06a8b1f42d80390d8559fbfd706d746;hb=2fa086a8e02b1b2d62a9a424b41944f3a2251e60;hpb=a7334b0952ab66c17ee787e36e6d2c5ceb387de6 diff --git a/set.c b/set.c index b94ea447f..efd20db53 100644 --- a/set.c +++ b/set.c @@ -19,10 +19,6 @@ along with systemd; If not, see . ***/ -#ifdef HAVE_CONFIG_H -#include -#endif - #include #include "set.h" @@ -61,6 +57,10 @@ void *set_remove(Set *s, void *value) { return hashmap_remove(MAKE_HASHMAP(s), value); } +int set_remove_and_put(Set *s, void *old_value, void *new_value) { + return hashmap_remove_and_put(MAKE_HASHMAP(s), old_value, new_value, new_value); +} + unsigned set_size(Set *s) { return hashmap_size(MAKE_HASHMAP(s)); } @@ -97,6 +97,14 @@ int set_merge(Set *s, Set *other) { return hashmap_merge(MAKE_HASHMAP(s), MAKE_HASHMAP(other)); } +void set_move(Set *s, Set *other) { + return hashmap_move(MAKE_HASHMAP(s), MAKE_HASHMAP(other)); +} + +int set_move_one(Set *s, Set *other, void *value) { + return hashmap_move_one(MAKE_HASHMAP(s), MAKE_HASHMAP(other), value); +} + Set* set_copy(Set *s) { return MAKE_SET(hashmap_copy(MAKE_HASHMAP(s))); }