summaryrefslogtreecommitdiff
path: root/src/basic/strv.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/basic/strv.h')
-rw-r--r--src/basic/strv.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/basic/strv.h b/src/basic/strv.h
index 8e83ffde7..591a452e9 100644
--- a/src/basic/strv.h
+++ b/src/basic/strv.h
@@ -54,6 +54,7 @@ int strv_extend(char ***l, const char *value);
#if 0 /// UNNEEDED by elogind
int strv_extendf(char ***l, const char *format, ...) _printf_(2,0);
#endif // 0
+int strv_extend_front(char ***l, const char *value);
int strv_push(char ***l, char *value);
int strv_push_pair(char ***l, char *a, char *b);
int strv_push_prepend(char ***l, char *value);
@@ -90,6 +91,7 @@ char **strv_split_newlines(const char *s);
int strv_split_extract(char ***t, const char *s, const char *separators, ExtractFlags flags);
#endif // 0
+
char *strv_join(char **l, const char *separator);
#if 0 /// UNNEEDED by elogind
char *strv_join_quoted(char **l);
@@ -102,6 +104,7 @@ int strv_make_nulstr(char **l, char **p, size_t *n);
bool strv_overlap(char **a, char **b) _pure_;
#endif // 0
+
#define STRV_FOREACH(s, l) \
for ((s) = (l); (s) && *(s); (s)++)