1 2 3 4 5 6 7 8 9 10
//! Provides functions to quote and possibly unquote strings with different quoting styles. #![deny(rust_2018_idioms, missing_docs)] #![forbid(unsafe_code)] /// #[allow(clippy::empty_docs)] pub mod ansi_c; mod single; pub use single::single;