gix_quote/
lib.rs

1
2
3
4
5
6
7
8
9
//! Provides functions to quote and possibly unquote strings with different quoting styles.
#![deny(rust_2018_idioms, missing_docs)]
#![forbid(unsafe_code)]

///
pub mod ansi_c;

mod single;
pub use single::single;