diff options
Diffstat (limited to 'src/strv.c')
-rw-r--r-- | src/strv.c | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/strv.c b/src/strv.c index a749096f9a..2ebd0ee53a 100644 --- a/src/strv.c +++ b/src/strv.c @@ -31,7 +31,6 @@ char *strv_find(char **l, const char *name) { char **i; - assert(l); assert(name); STRV_FOREACH(i, l) @@ -41,6 +40,18 @@ char *strv_find(char **l, const char *name) { return NULL; } +char *strv_find_prefix(char **l, const char *name) { + char **i; + + assert(name); + + STRV_FOREACH(i, l) + if (startswith(*i, name)) + return *i; + + return NULL; +} + void strv_free(char **l) { char **k; |