server/src/kernel/version.c
2019-03-03 09:39:52 +01:00

25 lines
530 B
C

#ifdef _MSC_VER
#include <platform.h>
#endif
#include "version.h"
#include <stdio.h>
#ifndef ERESSEA_VERSION
/* the version number, if it was not passed to make with -D */
#define ERESSEA_VERSION "3.19.0"
#endif
const char *eressea_version(void) {
#ifdef ERESSEA_BUILDNO
return ERESSEA_VERSION "-" ERESSEA_BUILDNO;
#else
return ERESSEA_VERSION;
#endif
}
int version_no(const char *str) {
int maj = 0, min = 0, pat = 0;
sscanf(str, "%4d.%4d.%4d", &maj, &min, &pat);
return (maj << 16) | (min << 8) | pat;
}