morse-lib 0.4.3

Library for coding/decoding Morse Code with multilanguage support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod t_morse;
pub use t_morse::TMorse;

#[cfg(feature = "international")]
mod international;
#[cfg(feature = "international")]
pub use international::*;

#[cfg(feature = "custom")]
mod custom;
#[cfg(feature = "custom")]
pub use custom::MorseCustom;