]> git.ipfire.org Git - thirdparty/systemd.git/blame - strv.h
add simple event loop
[thirdparty/systemd.git] / strv.h
CommitLineData
60918275
LP
1/*-*- Mode: C; c-basic-offset: 8 -*-*/
2
3#ifndef foostrvhfoo
4#define foostrvhfoo
5
6#include "macro.h"
7
8char *strv_find(char **l, const char *name);
9void strv_free(char **l);
10char **strv_copy(char **l);
11unsigned strv_length(char **l);
12
13char **strv_new(const char *x, ...) __sentinel;
14
15#define STRV_FOREACH(s, l) \
16 for ((s) = (l); (l) && *(s); (s)++)
17
18#define STRV_FOREACH_BACKWARDS(s, l) \
19 for (; (l) && ((s) >= (l)); (s)--)
20
21#endif