1//! Filesystem path operations. 2 3mod arg; 4mod dec_int; 5 6pub use arg::{option_into_with_c_str, Arg}; 7pub use dec_int::{DecInt, Integer}; 8 9pub(crate) const SMALL_PATH_BUFFER_SIZE: usize = 256;