mirror of
https://gitee.com/johng/gf
synced 2026-06-07 02:12:11 +08:00
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
|