diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-01-11 01:04:11 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-01-11 01:04:11 +0100 |
commit | 5926cccae202f1b8869017d4bdaf9e9ce371bba6 (patch) | |
tree | b3bd75bb7232b3a64b7e4cb67e542dc3f8b4172a /src/shared/strv.h | |
parent | 8afbb8e1180dce3cb33a14fc3ec5afcf501104e6 (diff) |
unit: instead of directly loading drop-in configuration snippets use conf_files_list_strv()
This has the benefit of allowing the usual overriding/masking knowledge
everybody loves so much.
Diffstat (limited to 'src/shared/strv.h')
-rw-r--r-- | src/shared/strv.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shared/strv.h b/src/shared/strv.h index 45558d8960..44ba3d1530 100644 --- a/src/shared/strv.h +++ b/src/shared/strv.h @@ -37,6 +37,7 @@ unsigned strv_length(char **l); char **strv_merge(char **a, char **b); char **strv_merge_concat(char **a, char **b, const char *suffix); char **strv_append(char **l, const char *s); +int strv_extend(char ***l, const char *value); char **strv_remove(char **l, const char *s); char **strv_remove_prefix(char **l, const char *s); |