summaryrefslogtreecommitdiff
path: root/src/systemd/src/basic/strv.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/systemd/src/basic/strv.h')
-rw-r--r--src/systemd/src/basic/strv.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/systemd/src/basic/strv.h b/src/systemd/src/basic/strv.h
index df3855d9fa..3917377bc8 100644
--- a/src/systemd/src/basic/strv.h
+++ b/src/systemd/src/basic/strv.h
@@ -156,3 +156,9 @@ static inline bool strv_fnmatch_or_empty(char* const* patterns, const char *s, i
return strv_isempty(patterns) ||
strv_fnmatch(patterns, s, flags);
}
+
+char ***strv_free_free(char ***l);
+
+char **strv_skip(char **l, size_t n);
+
+int strv_extend_n(char ***l, const char *value, size_t n);