Files
squashfs/unsquash.go
T

10 lines
158 B
Go

package squashfs
import "io"
//Squashfs is a squashfs backed by a reader.
type Squashfs struct {
rdr *io.Reader //underlyting reader
super Superblock
}