diff options
Diffstat (limited to '')
| -rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
| @@ -1,4 +1,4 @@ | |||
| 1 | # BitReader [](https://goreportcard.com/report/github.com/bisaxa/bitreader) [](https://github.com/bisaxa/bitreader/blob/main/LICENSE) | 1 | # BitReader [](https://goreportcard.com/report/github.com/pektezol/bitreader) [](https://github.com/pektezol/bitreader/blob/main/LICENSE) |
| 2 | A simple bit reader with big/little-endian support for golang.\ | 2 | A simple bit reader with big/little-endian support for golang.\ |
| 3 | Reads data from an existing byte array.\ | 3 | Reads data from an existing byte array.\ |
| 4 | Uses string manipulation (for now).\ | 4 | Uses string manipulation (for now).\ |
| @@ -7,13 +7,13 @@ Checking for overflowing the data. | |||
| 7 | 7 | ||
| 8 | ## Installation | 8 | ## Installation |
| 9 | ```bash | 9 | ```bash |
| 10 | $ go get github.com/bisaxa/bitreader | 10 | $ go get github.com/pektezol/bitreader |
| 11 | ``` | 11 | ``` |
| 12 | 12 | ||
| 13 | ## Usage | 13 | ## Usage |
| 14 | 14 | ||
| 15 | ```go | 15 | ```go |
| 16 | import "github.com/bisaxa/bitreader" | 16 | import "github.com/pektezol/bitreader" |
| 17 | 17 | ||
| 18 | // data: []byte Data to read from byte array | 18 | // data: []byte Data to read from byte array |
| 19 | // le: bool Little-endian(true) or big-endian(false) state | 19 | // le: bool Little-endian(true) or big-endian(false) state |