xref: /netbsd-src/external/mit/libcbor/dist/demo/hello_cbor.c (revision 8ecbf5f02b752fcb7debe1a8fab1dc82602bc760)
1 /*
2  * Copyright (c) 2014-2019 Pavel Kalvoda <me@pavelkalvoda.com>
3  *
4  * libcbor is free software; you can redistribute it and/or modify
5  * it under the terms of the MIT license. See LICENSE for details.
6  */
7 
8 #include <cbor.h>
9 #include <stdio.h>
10 
11 int main(int argc, char* argv[]) {
12   printf("Hello from libcbor %s\n", CBOR_VERSION);
13 }
14