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