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