Function mortal::util::unctrl_lower [] [src]

pub fn unctrl_lower(ch: char) -> char

Returns the lowercase ASCII character corresponding to the given control character.

If ch is not a control character, the result is unspecified.

Examples


// Ctrl-C
assert_eq!(unctrl_lower('\x03'), 'c');