diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-12-19 01:31:59 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-12-19 02:07:42 +0100 |
commit | e1dd6790e4f58506e637bf9541f63504acc2972f (patch) | |
tree | 6f55a9d1fbb5531f6d0337f7e939b1d6b41f7d37 /src/shared/strv.h | |
parent | 24167f3db842238e4e9115db36eff947be46da5f (diff) |
strv: ass new strv_is_uniq() and strv_reverse() calls
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); |