//! Fuzzing helpers.
usesuper::Options;usestd::borrow::Cow;/// Exposed for fuzzing so we can check the slow path is correct.
pubfnfill_slow_path<'a>(text:&str, options:Options<'_>)-> String{crate::fill::fill_slow_path(text, options)}/// Exposed for fuzzing so we can check the slow path is correct.
pubfnwrap_single_line<'a>(line:&'astr, options:&Options<'_>, lines:&mutVec<Cow<'a, str>>){crate::wrap::wrap_single_line(line, options, lines);}/// Exposed for fuzzing so we can check the slow path is correct.
pubfnwrap_single_line_slow_path<'a>(line:&'astr,
options:&Options<'_>,
lines:&mutVec<Cow<'a, str>>,
){crate::wrap::wrap_single_line_slow_path(line, options, lines)}