Renamed BlockReader to MetadataReader (more correct)

SOME work on fragments (not working still...)
This commit is contained in:
Caleb Gardner
2020-11-23 16:50:00 -06:00
parent ae2cc5ab54
commit 5761ad59cf
9 changed files with 80 additions and 24 deletions
+17
View File
@@ -0,0 +1,17 @@
package squashfs
type FileReader struct {
r *Reader
data *DataReader
fragmentData []byte
}
//TODO: Yes
func (r *Reader) ReadFile(location string) (*FileReader, error) {
}
func (f *FileReader) Read(p []byte) (int, error) {
}