summaryrefslogtreecommitdiffstats
path: root/src/gta-test.c
blob: 4838fcbd834d29e0a1fc99bf892c49e48d269a64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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;
}