aboutsummaryrefslogtreecommitdiffstats
path: root/libquanta_quantise.c
blob: 8d7c3e5e34994794bd7e69542b486b7590ada7eb (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(struct libquanta_palette *palette, ...)
{
	va_list args;
	va_start(args, palette);
	return libquanta_vquantise(palette, args);
	va_end(args);
}