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

Method PutSint32LE

src/core/string_builder.cpp:71–74  ·  view source on GitHub ↗

* Append binary int32 using little endian. */

Source from the content-addressed store, hash-verified

69 * Append binary int32 using little endian.
70 */
71void BaseStringBuilder::PutSint32LE(int32_t value)
72{
73 this->PutUint32LE(static_cast<uint32_t>(value));
74}
75
76/**
77 * Append binary uint64 using little endian.

Callers 1

string_builder.cppFile · 0.80

Calls 1

PutUint32LEMethod · 0.95

Tested by

no test coverage detected