bemenu/lib/library.c

16 lines
303 B
C
Raw Normal View History

2014-04-12 19:12:44 +00:00
#include "version.h"
2014-04-14 16:25:04 +00:00
/**
* 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.
*/
2014-04-12 19:12:44 +00:00
const char *bmVersion(void)
{
return BM_VERSION;
}
/* vim: set ts=8 sw=4 tw=0 :*/