blob: d9d54b8c8e3e28d75e32b6013919751245e536ee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/*
* 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.
*/
#ifndef LIBCBOR_STREAMING_H
#define LIBCBOR_STREAMING_H
#include "callbacks.h"
#include "cbor/common.h"
#ifdef __cplusplus
extern "C" {
#endif
/** Stateless decoder
*
* Will try parsing the \p buffer and will invoke the appropriate callback on
* success. Decodes one item at a time. No memory allocations occur.
*
* @param buffer Input buffer
* @param buffer_size Length of the buffer
* @param callbacks The callback bundle
* @param context An arbitrary pointer to allow for maintaining context.
*/
struct cbor_decoder_result cbor_stream_decode(
cbor_data buffer, size_t buffer_size,
const struct cbor_callbacks* callbacks, void* context);
#ifdef __cplusplus
}
#endif
#endif // LIBCBOR_STREAMING_H
|