|
cbor_int_width | cbor_int_get_width (const cbor_item_t *item) |
| Queries the integer width. More...
|
|
uint8_t | cbor_get_uint8 (const cbor_item_t *item) |
| Extracts the integer value. More...
|
|
uint16_t | cbor_get_uint16 (const cbor_item_t *item) |
| Extracts the integer value. More...
|
|
uint32_t | cbor_get_uint32 (const cbor_item_t *item) |
| Extracts the integer value. More...
|
|
uint64_t | cbor_get_uint64 (const cbor_item_t *item) |
| Extracts the integer value. More...
|
|
uint64_t | cbor_get_int (const cbor_item_t *item) |
| Extracts the integer value. More...
|
|
void | cbor_set_uint8 (cbor_item_t *item, uint8_t value) |
| Assigns the integer value. More...
|
|
void | cbor_set_uint16 (cbor_item_t *item, uint16_t value) |
| Assigns the integer value. More...
|
|
void | cbor_set_uint32 (cbor_item_t *item, uint32_t value) |
| Assigns the integer value. More...
|
|
void | cbor_set_uint64 (cbor_item_t *item, uint64_t value) |
| Assigns the integer value. More...
|
|
void | cbor_mark_uint (cbor_item_t *item) |
| Marks the integer item as a positive integer. More...
|
|
void | cbor_mark_negint (cbor_item_t *item) |
| Marks the integer item as a negative integer. More...
|
|
cbor_item_t * | cbor_new_int8 () |
| Allocates new integer with 1B width. More...
|
|
cbor_item_t * | cbor_new_int16 () |
| Allocates new integer with 2B width. More...
|
|
cbor_item_t * | cbor_new_int32 () |
| Allocates new integer with 4B width. More...
|
|
cbor_item_t * | cbor_new_int64 () |
| Allocates new integer with 8B width. More...
|
|
cbor_item_t * | cbor_build_uint8 (uint8_t value) |
| Constructs a new positive integer. More...
|
|
cbor_item_t * | cbor_build_uint16 (uint16_t value) |
| Constructs a new positive integer. More...
|
|
cbor_item_t * | cbor_build_uint32 (uint32_t value) |
| Constructs a new positive integer. More...
|
|
cbor_item_t * | cbor_build_uint64 (uint64_t value) |
| Constructs a new positive integer. More...
|
|
cbor_item_t * | cbor_build_negint8 (uint8_t value) |
| Constructs a new negative integer. More...
|
|
cbor_item_t * | cbor_build_negint16 (uint16_t value) |
| Constructs a new negative integer. More...
|
|
cbor_item_t * | cbor_build_negint32 (uint32_t value) |
| Constructs a new negative integer. More...
|
|
cbor_item_t * | cbor_build_negint64 (uint64_t value) |
| Constructs a new negative integer. More...
|
|