wedge/fuzz/fuzz_targets/fuzz_target_1.rs
2021-10-24 01:07:55 -05:00

6 lines
107 B
Rust

#![no_main]
use libfuzzer_sys::fuzz_target;
fuzz_target!(|data: &[u8]| {
// fuzzed code goes here
});