blob: 7f2210e053040b1406ce6ad2f1f722b808b0f11d (
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 = true
|