(r io.Reader)
| 25 | } |
| 26 | |
| 27 | func (x *xerialReader) Reset(r io.Reader) { |
| 28 | x.reader = r |
| 29 | x.input = x.input[:0] |
| 30 | x.output = x.output[:0] |
| 31 | x.header = [16]byte{} |
| 32 | x.offset = 0 |
| 33 | x.nbytes = 0 |
| 34 | } |
| 35 | |
| 36 | func (x *xerialReader) Read(b []byte) (int, error) { |
| 37 | for { |
no outgoing calls