| 72 | } |
| 73 | |
| 74 | type decodeReader struct { |
| 75 | r io.Reader |
| 76 | par int // parity of last read (0 or 1) |
| 77 | b byte // odd byte from last read (if any) |
| 78 | } |
| 79 | |
| 80 | func (r *decodeReader) Read(p []byte) (int, error) { |
| 81 | if len(p) == 0 { |
nothing calls this directly
no outgoing calls
no test coverage detected