summaryrefslogtreecommitdiff
path: root/lib/library.c
blob: f432eda042101893fcb78e36f782ef8eb33d1ae1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "version.h"

/**
 * Get version of the library in 'major.minor.patch' format.
 *
 * @see @link http://semver.org/ Semantic Versioning @endlink
 *
 * @return Null terminated C "string" to version string.
 */
const char *bmVersion(void)
{
    return BM_VERSION;
}

/* vim: set ts=8 sw=4 tw=0 :*/