Sign in
chromium
/
external
/
github.com
/
Cyan4973
/
xxHash
/
refs/tags/v0.8.3
/
.
/
fuzz
/
fuzzer.c
blob: 731ba4d497e093790fdc8670dcd7d3d38dca1249 [
file
]
#include
<stdint.h>
#include
"xxhash.h"
int
LLVMFuzzerTestOneInput
(
const
uint8_t
*
data
,
size_t
size
)
{
volatile
XXH64_hash_t
hash64
=
XXH64
(
data
,
size
,
0
);
(
void
)
hash64
;
volatile
XXH32_hash_t
hash32
=
XXH32
(
data
,
size
,
0
);
(
void
)
hash32
;
return
0
;
}