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