chiark / gitweb /
tmpfiles: separate a generic item glob processing function
[elogind.git] / src / hashmap.h
index ac5a8ae0856cdc146b3ff3f4fce0521246d5b6a3..16ffbd392216e77a126ef1d8ef0d0877470c49b7 100644 (file)
@@ -76,6 +76,8 @@ void *hashmap_steal_first_key(Hashmap *h);
 void* hashmap_first(Hashmap *h);
 void* hashmap_last(Hashmap *h);
 
+char **hashmap_get_strv(Hashmap *h);
+
 #define HASHMAP_FOREACH(e, h, i) \
         for ((i) = ITERATOR_FIRST, (e) = hashmap_iterate((h), &(i), NULL); (e); (e) = hashmap_iterate((h), &(i), NULL))