summaryrefslogtreecommitdiffstats
path: root/vendor/rustix/src/path/mod.rs
blob: 19bf2c7f086ac9572452198b61e42e0a42bf2023 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//! Filesystem path operations.

mod arg;
#[cfg(feature = "itoa")]
mod dec_int;

pub use arg::Arg;
#[cfg(feature = "itoa")]
#[cfg_attr(doc_cfg, doc(cfg(feature = "itoa")))]
pub use dec_int::DecInt;

pub(crate) const SMALL_PATH_BUFFER_SIZE: usize = 256;