1#include "libemos_version.h"
2
3const char * libemos_version()     { return LIBEMOS_VERSION; }
4const char * libemos_version_str() { return LIBEMOS_VERSION_STR; }
5
6unsigned int libemos_version_int()
7{
8  return 100*LIBEMOS_MAJOR_VERSION + 10*LIBEMOS_MINOR_VERSION + 1*LIBEMOS_PATCH_VERSION;
9}
10
11const char * libemos_git_sha1() { return "@LIBEMOS_GIT_SHA1@"; }
12
13