#![no_main] use libfuzzer_sys::fuzz_target; fuzz_target!(|data: &[u8]| { ironrdp_fuzzing::oracles::pdu_decode(data); });