macro_rules! impl_typed_fn {
($self:ident, $f:ident $(, $($tts:tt)*)?) => {
match $self {
Self::Unix(this) => this.$f($($($tts)*)?),
Self::Windows(this) => this.$f($($($tts)*)?),
}
};
}
mod non_utf8;
mod utf8;
pub use non_utf8::*;
pub use utf8::*;
pub enum PathType {
Unix,
Windows,
}