wedge/fuzz/fuzz_targets/fuzz_target_1.rs

7 lines
107 B
Rust
Raw Permalink Normal View History

2021-10-24 06:07:55 +00:00
#![no_main]
use libfuzzer_sys::fuzz_target;
fuzz_target!(|data: &[u8]| {
// fuzzed code goes here
});