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