mirror of
https://github.com/Cloudef/bemenu
synced 2024-11-23 17:32:11 +01:00
16 lines
303 B
C
16 lines
303 B
C
#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 :*/
|