summaryrefslogtreecommitdiff
path: root/strv.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-01-27 22:38:21 +0100
committerLennart Poettering <lennart@poettering.net>2010-01-27 22:38:21 +0100
commitcba8922fd40b9eca203bc1d63bef72dd1edf302c (patch)
tree4d2329ba3a84ef23f09cee28b694c9fa647ea02c /strv.c
parent4a72ff34c62f18559e96b35d69c665e07290f228 (diff)
introduce strv_contains()
Diffstat (limited to 'strv.c')
-rw-r--r--strv.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/strv.c b/strv.c
index faa878c006..7e0810bffe 100644
--- a/strv.c
+++ b/strv.c
@@ -145,3 +145,13 @@ fail:
return NULL;
}
+
+bool strv_contains(char **l, const char *s) {
+ char **i;
+
+ STRV_FOREACH(i, l)
+ if (streq(*i, s))
+ return true;
+
+ return false;
+}