xref: /netbsd-src/external/mit/libcbor/dist/demo/hello_cbor.c (revision 5dd36a3bc8bf2a9dec29ceb6349550414570c447)
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 
main(int argc,char * argv[])11 int main(int argc, char* argv[]) {
12   printf("Hello from libcbor %s\n", CBOR_VERSION);
13 }
14