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