Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 639 Bytes

README.md

File metadata and controls

33 lines (24 loc) · 639 Bytes

lzfse

Go GoDoc

An LZFSE decompressor written in Go

package main

import (
	"os"
	"gihub.com/aixiansheng/lzfse"
)

func main() {
	inf, err := os.Open("some.lzfse")
	outf, err := os.Create("some.file")
	d := lzfse.NewReader(fh)
	io.Copy(outf, d)
}

Testing

make -C test/

# all tests
go test -v

# just one test
go test -v -run TestVariousSizes/test/test.small.dec.cmp