mirror of
https://github.com/xtool-org/xtool.git
synced 2026-02-04 11:53:30 +01:00
10 lines
142 B
C
10 lines
142 B
C
#include "version.h"
|
|
|
|
const char *xtl_version(void) {
|
|
#ifdef XTOOL_VERSION
|
|
return XTOOL_VERSION;
|
|
#else
|
|
return "unversioned";
|
|
#endif
|
|
}
|