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

Function parse_cbor_unsigned

example/cbor.cpp:328–337  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

326}
327
328const unsigned char*
329parse_cbor_unsigned(
330 const unsigned char* first, const unsigned char* last, unsigned char ch, value& v )
331{
332 std::uint64_t n;
333 first = parse_cbor_number( first, last, ch, n );
334
335 v = n;
336 return first;
337}
338
339const unsigned char*
340parse_cbor_signed(

Callers 1

parse_cbor_valueFunction · 0.85

Calls 1

parse_cbor_numberFunction · 0.85

Tested by

no test coverage detected