Read byte from the buffer
(buffer []byte, offset int)
| 200 | |
| 201 | // Read byte from the buffer |
| 202 | func ReadByte(buffer []byte, offset int) byte { |
| 203 | return buffer[offset] |
| 204 | } |
| 205 | |
| 206 | // Read single byte character from the buffer |
| 207 | func ReadChar(buffer []byte, offset int) rune { |