diff options
author | Lennart Poettering <lennart@poettering.net> | 2016-06-15 22:36:58 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-06-21 13:20:48 +0200 |
commit | d97c5aeab8b9c6d871cad292c17c9b9c94736e25 (patch) | |
tree | 5cc3dd338be2ef6b969a124801df3cb6fade60fd /src/basic/set.h | |
parent | b6274a0e9e3dd592826411940a71a67dbf05bcef (diff) |
set: add new set_put_strsplit() call
It's like set_put_strdup(), but splits up a string via an extract_first_word()
loop.
Diffstat (limited to 'src/basic/set.h')
-rw-r--r-- | src/basic/set.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/basic/set.h b/src/basic/set.h index e0d9dd001c..12f64a8c57 100644 --- a/src/basic/set.h +++ b/src/basic/set.h @@ -19,6 +19,7 @@ along with systemd; If not, see <http://www.gnu.org/licenses/>. ***/ +#include "extract-word.h" #include "hashmap.h" #include "macro.h" @@ -122,6 +123,7 @@ static inline char **set_get_strv(Set *s) { int set_consume(Set *s, void *value); int set_put_strdup(Set *s, const char *p); int set_put_strdupv(Set *s, char **l); +int set_put_strsplit(Set *s, const char *v, const char *separators, ExtractFlags flags); #define SET_FOREACH(e, s, i) \ for ((i) = ITERATOR_FIRST; set_iterate((s), &(i), (void**)&(e)); ) |