//! Path normalization shared by the virtual backends.
use ;
/// Normalize a path: remove leading `/`, resolve `.` and `..`.
///
/// Virtual backends (`MemoryFs`, `OverlayFs`) key their internal maps on the
/// normalized form so `a/./b`, `/a/b`, and `a/b` all address the same entry.
pub