jotdown/tests/afl/src/lib.rs

6 lines
123 B
Rust
Raw Normal View History

2023-03-12 13:38:29 -04:00
pub fn parse(data: &[u8]) {
if let Ok(s) = std::str::from_utf8(data) {
jotdown::Parser::new(s).last();
}
}