opnsense-src/contrib/libcbor/test/cpp_linkage_test.cpp
Ed Maste f55904f2f6 Import libcbor at 'contrib/libcbor/'
git-subtree-dir: contrib/libcbor
git-subtree-mainline: 293663f4da
git-subtree-split: 5b2defbd2a
(cherry picked from commit 10ff414c14)
2022-02-09 16:23:53 -05:00

11 lines
327 B
C++

/*
* Copyright (c) 2014-2020 Pavel Kalvoda <me@pavelkalvoda.com>
*
* libcbor is free software; you can redistribute it and/or modify
* it under the terms of the MIT license. See LICENSE for details.
*/
#include <iostream>
#include "cbor.h"
int main() { std::cout << "Hello from libcbor " << CBOR_VERSION << std::endl; }