pub fn unctrl_upper(ch: char) -> charExpand 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');