* Writes a encoded unsigned 32-bit integer to the byte stream. */
| 170 | * Writes a encoded unsigned 32-bit integer to the byte stream. |
| 171 | */ |
| 172 | void writeEncodedUint32(uint32_t value) { |
| 173 | writeEncodedUint64(value); |
| 174 | } |
| 175 | |
| 176 | /** |
| 177 | * Writes a encoded signed 64-bit integer to the byte stream. |
no outgoing calls
no test coverage detected