xref: /openbsd-src/lib/libcbor/src/cbor/configuration.h (revision 1a8dbaac879b9f3335ad7fb25429ce63ac1d6bac)
1 #ifndef LIBCBOR_CONFIGURATION_H
2 #define LIBCBOR_CONFIGURATION_H
3 
4 #define CBOR_MAJOR_VERSION 0
5 #define CBOR_MINOR_VERSION 7
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