]> git.ipfire.org Git - people/ms/systemd.git/blame - strv.h
cgroup: if we are already in our own cgroup, then reuse it
[people/ms/systemd.git] / strv.h
CommitLineData
60918275
LP
1/*-*- Mode: C; c-basic-offset: 8 -*-*/
2
3#ifndef foostrvhfoo
4#define foostrvhfoo
5
a7334b09
LP
6/***
7 This file is part of systemd.
8
9 Copyright 2010 Lennart Poettering
10
11 systemd is free software; you can redistribute it and/or modify it
12 under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2 of the License, or
14 (at your option) any later version.
15
16 systemd is distributed in the hope that it will be useful, but
17 WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with systemd; If not, see <http://www.gnu.org/licenses/>.
23***/
24
60918275
LP
25#include "macro.h"
26
27char *strv_find(char **l, const char *name);
28void strv_free(char **l);
29char **strv_copy(char **l);
30unsigned strv_length(char **l);
31
034c6ed7 32char **strv_merge(char **a, char **b);
5f9a22c3
LP
33char **strv_merge_concat(char **a, char **b, const char *suffix);
34char **strv_append(char **l, const char *s);
034c6ed7 35
5f9a22c3
LP
36char **strv_remove(char **l, const char *s);
37char **strv_uniq(char **l);
38
39#define strv_contains(l, s) (!!strv_find((l), (s)))
cba8922f 40
a65d5701 41char **strv_new(const char *x, ...) _sentinel;
257eca1a 42char **strv_new_ap(const char *x, va_list ap);
60918275 43
5f9a22c3
LP
44static inline bool strv_isempty(char **l) {
45 return !l || !*l;
46}
47
48char **strv_split(const char *s, const char *separator);
49char **strv_split_quoted(const char *s);
50
51char *strv_join(char **l, const char *separator);
52
2e6c9e6b
LP
53char **strv_env_merge(char **x, ...) _sentinel;
54
60918275 55#define STRV_FOREACH(s, l) \
cba8922f 56 for ((s) = (l); (s) && *(s); (s)++)
60918275
LP
57
58#define STRV_FOREACH_BACKWARDS(s, l) \
59 for (; (l) && ((s) >= (l)); (s)--)
60
61#endif