MCPcopy Create free account
hub / github.com/BYVoid/OpenCC / WriteLe32

Function WriteLe32

src/ConfigTest.cpp:79–84  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

77}
78
79void WriteLe32(std::ofstream& output, uint32_t value) {
80 output.put(static_cast<char>(value & 0xff));
81 output.put(static_cast<char>((value >> 8) & 0xff));
82 output.put(static_cast<char>((value >> 16) & 0xff));
83 output.put(static_cast<char>((value >> 24) & 0xff));
84}
85
86struct ZipTestEntry {
87 std::string name;

Callers 1

WriteStoredZipFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected