diff options
Diffstat (limited to '')
-rw-r--r-- | libenv_vselect_name_list_with_dealloc.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libenv_vselect_name_list_with_dealloc.c b/libenv_vselect_name_list_with_dealloc.c new file mode 100644 index 0000000..95f35ed --- /dev/null +++ b/libenv_vselect_name_list_with_dealloc.c @@ -0,0 +1,12 @@ +/* See LICENSE file for copyright and license details. */ +#include "common.h" + + +size_t +libenv_vselect_name_list_with_dealloc(char **variables, va_list classes) +{ + return libenv_vprocess_list_with_dealloc__(variables, 0, classes, NO_HEAD, NAMES, SELECT); +} + + +/* TODO test */ |