chiark / gitweb /
strv: ass new strv_is_uniq() and strv_reverse() calls
[elogind.git] / src / shared / strv.h
index 9e5b1bb8b0de69e465f755927a0df69d3b04bef3..e385bf73b841b3e24986c4eb3d35ad7682d04f35 100644 (file)
@@ -52,6 +52,7 @@ int strv_consume_prepend(char ***l, char *value);
 
 char **strv_remove(char **l, const char *s);
 char **strv_uniq(char **l);
+bool strv_is_uniq(char **l);
 
 bool strv_equal(char **a, char **b);
 
@@ -141,3 +142,5 @@ void strv_print(char **l);
                 _l ++;                                       \
                 _l[0];                                       \
         }))
+
+char **strv_reverse(char **l);