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