chiark / gitweb /
set: introduce set_get_strv()
[elogind.git] / src / shared / set.h
index a6c1d76b0e4cb5c1f17f2fddc7b44f0c6a77fcea..9162e2ae8025699bea4e57edd59ffe39a55f2559 100644 (file)
@@ -62,6 +62,8 @@ void *set_steal_first(Set *s);
 void* set_first(Set *s);
 void* set_last(Set *s);
 
+char **set_get_strv(Set *s);
+
 #define SET_FOREACH(e, s, i) \
         for ((i) = ITERATOR_FIRST, (e) = set_iterate((s), &(i)); (e); (e) = set_iterate((s), &(i)))