summaryrefslogtreecommitdiffstats
path: root/src/main.c
blob: c7ae46dded66cfaa6325fc66ab322d39f822e01b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "image.h"

int
main(int __attribute__((unused)) argc, char __attribute__((unused)) **argv)
{
	struct image *image;

	image = image_new("test.png");
	image_render(image);
	image_destroy(&image);

	return 0;
}