21 lines
501 B
C
21 lines
501 B
C
![]() |
/*==============================================================================
|
||
|
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
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
int32_t RunQCborExample(void);
|
||
|
|
||
|
#endif /* qcborExample_h */
|