chiark / gitweb /
add missing newlines
[elogind.git] / strv.h
1 /*-*- Mode: C; c-basic-offset: 8 -*-*/
2
3 #ifndef foostrvhfoo
4 #define foostrvhfoo
5
6 #include "macro.h"
7
8 char *strv_find(char **l, const char *name);
9 void strv_free(char **l);
10 char **strv_copy(char **l);
11 unsigned strv_length(char **l);
12
13 char **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