69f56d6951
Made SuperblockFlags public so you can set options when writing
16 lines
167 B
Go
16 lines
167 B
Go
package squashfs
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
type bufferedWriter struct {
|
|
w io.Writer
|
|
buffer []bufferedBytes
|
|
}
|
|
|
|
type bufferedBytes struct {
|
|
data []byte
|
|
offset int
|
|
}
|