1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-09 01:07:16 +01:00
SqMod/module/Vendor/MaxmindDB/t/version_t.c

11 lines
256 B
C
Raw Normal View History

2020-03-22 15:33:48 +01:00
#include "maxminddb_test_helper.h"
int main(void)
{
const char *version = MMDB_lib_version();
if (ok((version != NULL), "MMDB_lib_version exists")) {
is(version, PACKAGE_VERSION, "version is " PACKAGE_VERSION);
}
done_testing();
}