diff options
author | Martin Pitt <martin.pitt@ubuntu.com> | 2016-11-08 09:41:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-08 09:41:51 +0100 |
commit | ca91fd2acac007f0096fea47b2cc8931baa3af57 (patch) | |
tree | 4da5222881a4b3ec7e3b55dfa18fb8b7f764daa7 /src/basic/env-util.h | |
parent | ed7fd549d0a1bfebe4e17a3f0e92879eb986d4a9 (diff) | |
parent | bc8ec170d2bc3e294f24ff8bb255436a685ac14a (diff) |
Merge pull request #4509 from keszybz/foreach-word-quoted
Remove FOREACH_WORD_QUOTED
Diffstat (limited to 'src/basic/env-util.h')
-rw-r--r-- | src/basic/env-util.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/basic/env-util.h b/src/basic/env-util.h index b1fef704c2..8cb0fc2131 100644 --- a/src/basic/env-util.h +++ b/src/basic/env-util.h @@ -44,6 +44,7 @@ char **strv_env_delete(char **x, unsigned n_lists, ...); /* New copy */ char **strv_env_set(char **x, const char *p); /* New copy ... */ char **strv_env_unset(char **l, const char *p); /* In place ... */ char **strv_env_unset_many(char **l, ...) _sentinel_; +int strv_env_replace(char ***l, char *p); /* In place ... */ char *strv_env_get_n(char **l, const char *name, size_t k) _pure_; char *strv_env_get(char **x, const char *n) _pure_; |