Somre more stuff for parsting

Working on metadata parsing
Runnning into some Reader issues so I might create my own.
This commit is contained in:
Caleb Gardner
2020-11-10 11:25:56 -06:00
parent 81299c3872
commit 1d641259b2
6 changed files with 124 additions and 33 deletions
+12
View File
@@ -0,0 +1,12 @@
package squashfs
import "io"
//TODO: possible custom reader because I'm havng some issuse...
type Reader struct {
rdr *io.SectionReader
Offset int //Offset is the current offset of the reader
}
func NewReader(io.ReaderAt)