aboutsummaryrefslogtreecommitdiffstats
path: root/libenv_filter_variable_list.c
blob: 3c1d1cd43e8428dcd1b83ef94ba97f2387eeba21 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
/* See LICENSE file for copyright and license details. */
#include "common.h"


size_t
libenv_filter_variable_list(const char **variables, ...)
{
	va_list classes;
	va_start(classes, variables);
	return libenv_vfilter_variable_list(variables, classes);
	va_end(classes);
}