summaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index e69de29..c7ae46d 100644
--- a/src/main.c
+++ b/src/main.c
@@ -0,0 +1,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;
+}