Read 1 byte (uint8_t)
| 54 | |
| 55 | // Read 1 byte (uint8_t) |
| 56 | bool read1(uint8_t* dst) { |
| 57 | return read(1, dst); |
| 58 | } |
| 59 | |
| 60 | // Read 2 bytes (uint16_t) with endian swap if needed |
| 61 | bool read2(uint16_t* dst) { |
nothing calls this directly
no outgoing calls
no test coverage detected