1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-01-19 12:07:13 +01:00
SqMod/vendor/MaxmindDB/t/version_t.c

10 lines
256 B
C
Raw Normal View History

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