xref: /freebsd/lib/libcbor/cbor/configuration.h (revision 1492c8c0d825d1dcd8a2b2975fe35e4269b0b7de)
1 #ifndef LIBCBOR_CONFIGURATION_H
2 #define LIBCBOR_CONFIGURATION_H
3 
4 #define CBOR_MAJOR_VERSION 0
5 #define CBOR_MINOR_VERSION 8
6 #define CBOR_PATCH_VERSION 0
7 
8 #define CBOR_CUSTOM_ALLOC 0
9 #define CBOR_BUFFER_GROWTH 2
10 #define CBOR_MAX_STACK_SIZE 2048
11 #define CBOR_PRETTY_PRINTER 1
12 
13 #define CBOR_RESTRICT_SPECIFIER restrict
14 #define CBOR_INLINE_SPECIFIER
15 
16 #endif //LIBCBOR_CONFIGURATION_H
17