mirror of https://github.com/tidwall/tile38.git
14 lines
263 B
Go
14 lines
263 B
Go
|
// Expose some internals for testing purposes
|
||
|
package lz4
|
||
|
|
||
|
// expose the possible block max sizes
|
||
|
var BlockMaxSizeItems []int
|
||
|
|
||
|
func init() {
|
||
|
for s := range bsMapValue {
|
||
|
BlockMaxSizeItems = append(BlockMaxSizeItems, s)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
var FrameSkipMagic = frameSkipMagic
|