blob: a4c82b209f5599fc7f1e487c574f0c4feb792035 (
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_LOADERS_H
#define LIBCBOR_LOADERS_H
#include "cbor/common.h"
#ifdef __cplusplus
extern "C" {
#endif
/* Read the given uint from the given location, no questions asked */
uint8_t _cbor_load_uint8(const unsigned char *source);
uint16_t _cbor_load_uint16(const unsigned char *source);
uint32_t _cbor_load_uint32(const unsigned char *source);
uint64_t _cbor_load_uint64(const unsigned char *source);
double _cbor_load_half(cbor_data source);
float _cbor_load_float(cbor_data source);
double _cbor_load_double(cbor_data source);
#ifdef __cplusplus
}
#endif
#endif // LIBCBOR_LOADERS_H
|