1
0
mirror of https://github.com/Cloudef/bemenu synced 2024-11-24 01:44:16 +01:00
bemenu/lib/library.c

16 lines
303 B
C
Raw Normal View History

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