chiark / gitweb /
nspawn: allocate a new pty instead of passing ours through to avoid terminal settings...
[elogind.git] / src / strv.h
index 5af84ee41fdb263e31955643364ab0074007aee6..064576ce1ea6f6ed890822d5468e585261d5f65d 100644 (file)
@@ -65,6 +65,8 @@ char *strv_env_get(char **x, const char *n);
 
 char **strv_env_clean(char **l);
 
+char **strv_parse_nulstr(const char *s, size_t l);
+
 #define STRV_FOREACH(s, l)                      \
         for ((s) = (l); (s) && *(s); (s)++)