MCPcopy Create free account
hub / github.com/boostorg/json / parse_cbor_signed

Function parse_cbor_signed

example/cbor.cpp:339–348  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

337}
338
339const unsigned char*
340parse_cbor_signed(
341 const unsigned char* first, const unsigned char* last, unsigned char ch, value& v )
342{
343 std::uint64_t n;
344 first = parse_cbor_number( first, last, ch, n );
345
346 v = static_cast<std::int64_t>( ~n );
347 return first;
348}
349
350const unsigned char*
351parse_cbor_semantic_tag(

Callers 1

parse_cbor_valueFunction · 0.85

Calls 1

parse_cbor_numberFunction · 0.85

Tested by

no test coverage detected