Home | History | Annotate | Line # | Download | only in demo
hello_cbor.c revision 1.1.1.1.2.2
      1 /*
      2  * Copyright (c) 2014-2019 Pavel Kalvoda <me (at) 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