//! Utility functions, only pathname handling at the moment.
pub fn basename(f: &str) -> &str {
match f.rfind(['/', '\\']) {
None => f,
Some(index) => &f[(index + 1)..],
}
}
[ zur Elbe Produktseite wechseln0.31Quellennavigators
Analyse erneut starten
]