Files
squashfs/bufferedwriter.go
T
Caleb Gardner 69f56d6951 Working on how to actually write the archive.
Made SuperblockFlags public so you can set options when writing
2021-01-16 15:42:55 -06:00

16 lines
167 B
Go

package squashfs
import (
"io"
)
type bufferedWriter struct {
w io.Writer
buffer []bufferedBytes
}
type bufferedBytes struct {
data []byte
offset int
}