diff options
Diffstat (limited to 'src/libudev/strv.h')
-rw-r--r-- | src/libudev/strv.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libudev/strv.h b/src/libudev/strv.h index ba2bc2f589..9fba94e566 100644 --- a/src/libudev/strv.h +++ b/src/libudev/strv.h @@ -36,9 +36,10 @@ static inline void strv_freep(char ***l) { char **strv_copy(char * const *l); unsigned strv_length(char * const *l) _pure_; -char **strv_remove(char **l, const char *s); -int strv_push(char ***l, char *value); int strv_extend(char ***l, const char *value); +int strv_push(char ***l, char *value); + +char **strv_remove(char **l, const char *s); char **strv_uniq(char **l); char **strv_new(const char *x, ...) _sentinel_; |