| /*============================================================================== |
| example.h -- QCBOR encode and decode example |
| |
| Copyright (c) 2020, Laurence Lundblade. All rights reserved. |
| |
| SPDX-License-Identifier: BSD-3-Clause |
| |
| See BSD-3-Clause license in README.md |
| |
| Created on 6/30/20 |
| =============================================================================*/ |
| |
| #ifndef qcborExample_h |
| #define qcborExample_h |
| |
| #ifdef __cplusplus |
| extern "C" { |
| #if 0 |
| } /* Keep editor indention formatting happy */ |
| #endif |
| #endif |
| |
| #include <stdint.h> |
| |
| int32_t RunQCborExample(void); |
| |
| #ifdef __cplusplus |
| } |
| #endif |
| |
| #endif /* qcborExample_h */ |