mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-18 18:06:56 +01:00
10 lines
191 B
C
10 lines
191 B
C
#include "version.h"
|
|
|
|
void
|
|
hoedown_version(int *major, int *minor, int *revision)
|
|
{
|
|
*major = HOEDOWN_VERSION_MAJOR;
|
|
*minor = HOEDOWN_VERSION_MINOR;
|
|
*revision = HOEDOWN_VERSION_REVISION;
|
|
}
|