chiark / gitweb /
missing.h: add more btrfs types and defines
[elogind.git] / src / shared / strv.h
index a899395ba4efb1ebc0c439a1b4474d75828b0e3d..a80ccd6427cf6bf697188f4fc50d3d94f4409300 100644 (file)
@@ -31,7 +31,7 @@ char *strv_find(char **l, const char *name) _pure_;
 char *strv_find_prefix(char **l, const char *name) _pure_;
 char *strv_find_startswith(char **l, const char *name) _pure_;
 
-void strv_free(char **l);
+char **strv_free(char **l);
 DEFINE_TRIVIAL_CLEANUP_FUNC(char**, strv_free);
 #define _cleanup_strv_free_ _cleanup_(strv_freep)
 
@@ -146,10 +146,10 @@ void strv_print(char **l);
 
 char **strv_reverse(char **l);
 
-bool strv_fnmatch(const char *s, char* const* patterns, int flags);
+bool strv_fnmatch(char* const* patterns, const char *s, int flags);
 
-static inline bool strv_fnmatch_or_empty(const char *s, char* const* patterns, 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(s, patterns, flags);
+               strv_fnmatch(patterns, s, flags);
 }