unctrl_upper

Function unctrl_upper 

Source
pub fn unctrl_upper(ch: char) -> char
Expand description

Returns the 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_upper('\x03'), 'C');