macro_rules! cure_char {
($code:expr) => { ... };
}
Expand description
Cures a single character/unicode codepoint with decancer’s default options.
Output will always be in lowercase.
If you plan on only using this macro, it’s recommended to disable the default options
feature flag to optimize away unnecessary option checks.
This macro expands to:
ⓘ
decancer::cure_char(code, decancer::Options::default());
For more information, see the cure_char
function.