X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fshared%2Fstrv.h;h=518c4c2aa8b94da5d013a97127ef3d27595a8e43;hb=2404701e679904979751816930101511d8ec5d49;hp=e385bf73b841b3e24986c4eb3d35ad7682d04f35;hpb=e1dd6790e4f58506e637bf9541f63504acc2972f;p=elogind.git diff --git a/src/shared/strv.h b/src/shared/strv.h index e385bf73b..518c4c2aa 100644 --- a/src/shared/strv.h +++ b/src/shared/strv.h @@ -23,6 +23,7 @@ #include #include +#include #include "util.h" @@ -144,3 +145,11 @@ void strv_print(char **l); })) char **strv_reverse(char **l); + +bool strv_fnmatch(char* const* patterns, const char *s, int flags); + +static inline bool strv_fnmatch_or_empty(char* const* patterns, const char *s, int flags) { + assert(s); + return strv_isempty(patterns) || + strv_fnmatch(patterns, s, flags); +}