Sign in
android
/
toolchain
/
rustc
/
635618df8991b8a005e435895ea0b1eee7e3faf0
/
.
/
vendor
/
rustix-0.36.5
/
src
/
path
/
mod.rs
blob: bd6e9fc8bd4e49ab6a0d42c75cf25130d4324f16 [
file
] [
log
] [
blame
]
//! Filesystem path operations.
mod
arg
;
#[
cfg
(
feature
=
"itoa"
)]
mod
dec_int
;
pub
use
arg
::
Arg
;
#[
cfg
(
feature
=
"itoa"
)]
pub
use
dec_int
::
DecInt
;
pub
(
crate
)
const
SMALL_PATH_BUFFER_SIZE
:
usize
=
256
;