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