MCPcopy Create free account
hub / github.com/OpenTTD/OpenTTD / PutSint64LE

Method PutSint64LE

src/core/string_builder.cpp:97–100  ·  view source on GitHub ↗

* Append binary int64 using little endian. */

Source from the content-addressed store, hash-verified

95 * Append binary int64 using little endian.
96 */
97void BaseStringBuilder::PutSint64LE(int64_t value)
98{
99 this->PutUint64LE(static_cast<uint64_t>(value));
100}
101
102/**
103 * Append 8-bit char.

Callers 1

string_builder.cppFile · 0.80

Calls 1

PutUint64LEMethod · 0.95

Tested by

no test coverage detected