diff options
Diffstat (limited to 'src/shared/strv.h')
-rw-r--r-- | src/shared/strv.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/shared/strv.h b/src/shared/strv.h index 9e5b1bb8b0..e385bf73b8 100644 --- a/src/shared/strv.h +++ b/src/shared/strv.h @@ -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); |