MCPcopy Create free account
hub / github.com/BernardoGiordano/Checkpoint / appendLe32

Function appendLe32

common/transferprotocol.cpp:115–121  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

113 }
114
115 void appendLe32(std::string& out, uint32_t v)
116 {
117 out.push_back((char)(v & 0xFF));
118 out.push_back((char)((v >> 8) & 0xFF));
119 out.push_back((char)((v >> 16) & 0xFF));
120 out.push_back((char)((v >> 24) & 0xFF));
121 }
122
123 bool isSafeZipRelativePath(const std::string& relPath)
124 {

Callers 1

sendZipStreamFunction · 0.85

Calls 1

push_backMethod · 0.45

Tested by

no test coverage detected