Found some good squashfs documentation so I can start work

This commit is contained in:
Caleb Gardner
2020-11-10 03:48:03 -06:00
parent c00ec36268
commit 40541575f8
6 changed files with 2247 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
package squashfs
import "io"
//Squashfs is a squashfs backed by a reader.
type Squashfs struct {
rdr *io.Reader //underlyting reader
super Superblock
}