summaryrefslogtreecommitdiffstats
path: root/src/smpeg-test.c
blob: 787b21275537da39afc7e48cf2731d86e8b0c60e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* This file is part of mingw-cross-env.       */
/* See doc/index.html for further information. */

#include <smpeg.h>
#include <stdio.h>

int main(int argc, char *argv[])
{
    SMPEG_version v;

    (void)argc;
    (void)argv;

    SMPEG_VERSION(&v);
    printf("SMPEG version: %d.%d.%d\n", v.major, v.minor, v.patch);

    return 0;
}