Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mod.rs « os « src - github.com/windirstat/walkdir.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b7a2835f08887906bf5435ae01f629d5cbe034e1 (plain)
1
2
3
4
5
6
7
8
9
10
/*!
Low level platform specific APIs for reading directory entries.
*/

#[cfg(target_os = "linux")]
pub mod linux;
#[cfg(unix)]
pub mod unix;
#[cfg(windows)]
pub mod windows;