1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
/*!
# 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::*;