Function isControl [src]
Returns whether the character is a control character.
See also: control_code
Prototype
pub fn isControl(c: u8) bool
Parameters
c: u8
Source
pub fn isControl(c: u8) bool {
return c <= control_code.us or c == control_code.del;
}