175584Sru/*
275584Sru * Copyright (c) 2014-2019 Pavel Kalvoda <me@pavelkalvoda.com>
375584Sru *
475584Sru * libcbor is free software; you can redistribute it and/or modify
575584Sru * it under the terms of the MIT license. See LICENSE for details.
675584Sru */
775584Sru
875584Sru#include <cbor.h>
975584Sru#include <stdio.h>
1075584Sru
1175584Sruint main(int argc, char* argv[]) {
1275584Sru  printf("Hello from libcbor %s\n", CBOR_VERSION);
1375584Sru}
1475584Sru