RMW desert 1.0
Loading...
Searching...
No Matches
parser.h
1/*
2 * SPDX-FileCopyrightText: 2021 Kyunghwan Kwon <k@mononn.com>
3 *
4 * SPDX-License-Identifier: MIT
5 */
6
7#ifndef CBOR_PARSER_H
8#define CBOR_PARSER_H
9
10#if defined(__cplusplus)
11extern "C" {
12#endif
13
14#include "cbor/base.h"
15
26cbor_error_t cbor_parse(cbor_reader_t *reader, void const *msg, size_t msgsize,
27 size_t *nitems_parsed);
28
29#if defined(__cplusplus)
30}
31#endif
32
33#endif /* CBOR_PARSER_H */
Definition base.h:55