#![forbid(unsafe_code)]
use std::path::{Path, PathBuf};
#[must_use]
pub fn normalize_for_report(path: &Path) -> String {
path.to_string_lossy().replace('\\', "/")
}
#[must_use]
pub fn join_report_path(base: &Path, segment: &str) -> PathBuf {
base.join(segment)
}