MCPcopy Create free account
hub / github.com/BambooTracker/BambooTracker / appendInt16

Method appendInt16

BambooTracker/io/binary_container.cpp:67–73  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

65}
66
67void BinaryContainer::appendInt16(int16_t v)
68{
69 append({
70 static_cast<uint8_t>(0x00ff & v),
71 static_cast<uint8_t>(v >> 8),
72 });
73}
74
75void BinaryContainer::appendUint16(uint16_t v)
76{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected