mxe/src/smpeg-test.c

21 lines
317 B
C
Raw Normal View History

/*
* This file is part of MXE.
2012-03-29 11:14:15 +01:00
* See index.html for further information.
*/
2010-10-10 12:46:35 +01:00
#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;
}