_cbor_stack
struct _cbor_stack stack = _cbor_stack_init();
struct _cbor_stack *stack;
struct _cbor_stack _cbor_stack_init(void) {
return (struct _cbor_stack){.top = NULL, .size = 0};
void _cbor_stack_pop(struct _cbor_stack *stack) {
struct _cbor_stack_record *_cbor_stack_push(struct _cbor_stack *stack,
struct _cbor_stack _cbor_stack_init(void);
void _cbor_stack_pop(struct _cbor_stack *);
struct _cbor_stack_record *_cbor_stack_push(struct _cbor_stack *, cbor_item_t *,