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

Function hashwrite_be32

csum-file.h:101–105  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

99}
100
101static inline void hashwrite_be32(struct hashfile *f, uint32_t data)
102{
103 data = htonl(data);
104 hashwrite(f, &data, sizeof(data));
105}
106
107static inline size_t hashwrite_be64(struct hashfile *f, uint64_t data)
108{

Calls 1

hashwriteFunction · 0.85

Tested by

no test coverage detected