blob: c7fb48367a487acf0de2c63760fc1870b7fc5758 (
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"
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);
}
|