| 1 | //! Filesystem path operations. |
|---|---|
| 2 | |
| 3 | mod arg; |
| 4 | #[cfg(feature = "itoa")] |
| 5 | mod dec_int; |
| 6 | |
| 7 | pub use arg::{option_into_with_c_str, Arg}; |
| 8 | #[cfg(feature = "itoa")] |
| 9 | #[cfg_attr(docsrs, doc(cfg(feature = "itoa")))] |
| 10 | pub use dec_int::DecInt; |
| 11 | |
| 12 | pub(crate) const SMALL_PATH_BUFFER_SIZE: usize = 256; |
| 13 |
