xref: /third_party/rust/crates/rustix/src/path/mod.rs (revision b8a62b91)
1//! Filesystem path operations.
2
3mod arg;
4#[cfg(feature = "itoa")]
5mod dec_int;
6
7pub use arg::Arg;
8#[cfg(feature = "itoa")]
9pub use dec_int::DecInt;
10
11pub(crate) const SMALL_PATH_BUFFER_SIZE: usize = 256;
12