aboutsummaryrefslogtreecommitdiffstats
path: root/libquanta_quantise_wu.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--libquanta_quantise_wu.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/libquanta_quantise_wu.c b/libquanta_quantise_wu.c
new file mode 100644
index 0000000..c7fb483
--- /dev/null
+++ b/libquanta_quantise_wu.c
@@ -0,0 +1,12 @@
+/* See LICENSE file for copyright and license details. */
+#include "common.h"
+
+
+struct libquanta_image *
+libquanta_quantise_wu(struct libquanta_palette *palette, ...)
+{
+ va_list args;
+ va_start(args, palette);
+ return libquanta_vquantise_wu(palette, args);
+ va_end(args);
+}