Corpus
We will keep our working corpus in memory for efficiency, so we'll want to create
a new InMemoryCorpus
.
Add the use
declaration for it:
#![allow(unused)] fn main() { use libafl::prelude::InMemoryCorpus; }
And create a new corpus in your main
function:
#![allow(unused)] fn main() { let corpus = InMemoryCorpus::new(); }