mirror of
https://github.com/capnproto/pycapnp.git
synced 2025-03-04 16:35:04 +01:00
9 lines
226 B
C++
9 lines
226 B
C++
// check libcapnp version
|
|
|
|
#include <stdio.h>
|
|
#include "capnp/common.h"
|
|
|
|
int main(int argc, char **argv){
|
|
fprintf(stdout, "vers: %d.%d.%d\n", CAPNP_VERSION_MAJOR, CAPNP_VERSION_MINOR, CAPNP_VERSION_MICRO);
|
|
return 0;
|
|
}
|