slash-formatter 2.2.4

This crate provides functions to deal with slashes and backslashes in strings.
Documentation
/*!
# Slash Formatter

This crate provides functions to deal with slashes and backslashes in strings.

## Examples

To see examples, check out the documentation for each function.
*/

#![no_std]

extern crate alloc;

mod backslash;
mod file_separator;
mod slash;

pub use backslash::*;
pub use file_separator::*;
pub use slash::*;