summaryrefslogtreecommitdiffstats
path: root/src/smpeg-test.c
blob: 348f66615cd7734a8e4293c77db3b46dce8ec297 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* This file is part of MXE.                   */
/* 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;
}