* Wrapper for writing a byte to the dumper. * @param b The byte to write. */
| 417 | * @param b The byte to write. |
| 418 | */ |
| 419 | void SlWriteByte(uint8_t b) |
| 420 | { |
| 421 | _sl.dumper->WriteByte(b); |
| 422 | } |
| 423 | |
| 424 | static inline int SlReadUint16() |
| 425 | { |
no test coverage detected