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

Method PutSint8

src/core/string_builder.cpp:29–32  ·  view source on GitHub ↗

* Append binary int8. */

Source from the content-addressed store, hash-verified

27 * Append binary int8.
28 */
29void BaseStringBuilder::PutSint8(int8_t value)
30{
31 this->PutUint8(static_cast<uint8_t>(value));
32}
33
34/**
35 * Append binary uint16 using little endian.

Callers 1

string_builder.cppFile · 0.80

Calls 1

PutUint8Method · 0.95

Tested by

no test coverage detected