1 #ifndef LIBCBOR_CONFIGURATION_H
2 #define LIBCBOR_CONFIGURATION_H
3 
4 #define CBOR_MAJOR_VERSION 0
5 #define CBOR_MINOR_VERSION 10
6 #define CBOR_PATCH_VERSION 2
7 
8 #define CBOR_BUFFER_GROWTH 2
9 #define CBOR_MAX_STACK_SIZE 2048
10 #define CBOR_PRETTY_PRINTER 1
11 
12 #define CBOR_RESTRICT_SPECIFIER restrict
13 #define CBOR_INLINE_SPECIFIER
14 
15 #endif  // LIBCBOR_CONFIGURATION_H
16