#include <stddef.h>

#include "sorters.h"

#define MIN_SIZE 10000
#define MAX_SIZE 10000000

extern int buffer[MAX_SIZE];

typedef void (*testinit)(size_t);

extern const struct testcase {
	const char *name;
	testinit init;
	cmpfun   cmp;
} testcases[];