MCPcopy Create free account
hub / github.com/git/git / read_be32

Function read_be32

pack-bitmap.c:369–374  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

367}
368
369static inline uint32_t read_be32(const unsigned char *buffer, size_t *pos)
370{
371 uint32_t result = get_be32(buffer + *pos);
372 (*pos) += sizeof(result);
373 return result;
374}
375
376static inline uint8_t read_u8(const unsigned char *buffer, size_t *pos)
377{

Callers 1

load_bitmap_entries_v1Function · 0.85

Calls 1

get_be32Function · 0.85

Tested by

no test coverage detected