summaryrefslogtreecommitdiffstats
path: root/src/libgta-test.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libgta-test.c')
-rw-r--r--src/libgta-test.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/libgta-test.c b/src/libgta-test.c
new file mode 100644
index 0000000..4838fcb
--- /dev/null
+++ b/src/libgta-test.c
@@ -0,0 +1,20 @@
+/* This file is part of mingw-cross-env. */
+/* See doc/index.html for further information. */
+
+#include <gta/gta.h>
+
+int main(int argc, char *argv[])
+{
+ gta_header_t *header;
+ gta_result_t r;
+
+ (void)argc;
+ (void)argv;
+
+ r = gta_create_header(&header);
+ if (r == GTA_OK) {
+ gta_destroy_header(header);
+ }
+
+ return 0;
+}