summaryrefslogtreecommitdiff
path: root/vendor/rustix/src/path/mod.rs
blob: 627716d858fedf4cc28a1f4390d4df92c6b606e7 (plain)
1
2
3
4
5
6
7
8
9
//! Filesystem path operations.

mod arg;
mod dec_int;

pub use arg::{option_into_with_c_str, Arg};
pub use dec_int::{DecInt, Integer};

pub(crate) const SMALL_PATH_BUFFER_SIZE: usize = 256;