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