export_test.go 263 B

12345678910111213
  1. // Expose some internals for testing purposes
  2. package lz4
  3. // expose the possible block max sizes
  4. var BlockMaxSizeItems []int
  5. func init() {
  6. for s := range bsMapValue {
  7. BlockMaxSizeItems = append(BlockMaxSizeItems, s)
  8. }
  9. }
  10. var FrameSkipMagic = frameSkipMagic