Now let's take a silly one
0

Configure Feed

Select the types of activity you want to include in your feed.

at main 112 B View raw
1#![no_main] 2 3use libfuzzer_sys::fuzz_target; 4 5fuzz_target!(|data: &[u8]| { 6 knot_git::fuzz::patch(data); 7});