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