Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/AGWA/git-crypt
/ store_be32
Function
store_be32
util.cpp:85–91 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
83
}
84
85
void store_be32 (unsigned char* p, uint32_t i)
86
{
87
p[3] = i; i >>= 8;
88
p[2] = i; i >>= 8;
89
p[1] = i; i >>= 8;
90
p[0] = i;
91
}
92
93
bool read_be32 (std::istream& in, uint32_t& i)
94
{
Callers
2
process
Method · 0.85
write_be32
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected