blob: 6811c68a893bbcd60660a7760a1b766ef9ebb013 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
//go:build !ignorecrc
// +build !ignorecrc
// Copyright 2019+ Klaus Post. All rights reserved.
// License information can be found in the LICENSE file.
// Based on work by Yann Collet, released under BSD License.
package zstd
// ignoreCRC can be used for fuzz testing to ignore CRC values...
const ignoreCRC = false
|