rgncycle-libpq/lib-version/main.c

9 lines
175 B
C
Raw Normal View History

2023-03-15 15:38:35 +01:00
#include <stdio.h>
#include <libpq-fe.h>
int main() {
/*return version of libpq*/
int lib_ver = PQlibVersion();
printf("Version of libpq: %d\n", lib_ver);
return 0;
}