xref: /freebsd/contrib/libcbor/examples/bazel/src/hello.cc (revision 5d3e7166f6a0187fa3f8831b16a06bd9955c21ff)
1*5d3e7166SEd Maste #include "src/hello.h"
2*5d3e7166SEd Maste 
3*5d3e7166SEd Maste #include "cbor.h"
4*5d3e7166SEd Maste 
print_cbor_version()5*5d3e7166SEd Maste void print_cbor_version() {
6*5d3e7166SEd Maste   printf("libcbor v%d.%d.%d\n", cbor_major_version, cbor_minor_version, cbor_patch_version);
7*5d3e7166SEd Maste }
8