1 #![no_main] 2 #[macro_use] extern crate libfuzzer_sys; 3 use shlex::quote; 4 5 fuzz_target!(|data: &[u8]| { 6 if let Ok(s) = std::str::from_utf8(data) { 7 quote(s); 8 } 9 }); 10