aboutsummaryrefslogblamecommitdiffstats
path: root/libenv_get_chosen_list.c
blob: f4975fd5345ae727ad751a2a67d7b0ef1cc4796f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 */