blob: fda8a74228240b363d8cdeef767f1593e423812e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//go:build gofuzz
// +build gofuzz
// 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
|