blob: 73ece6b82902fca6bd9bbe3fb1fd5a45257cea41 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//! ASCII character constants
pub const NEWLINE: u8 = '\n';
pub const BACKSPACE: u8 = 0x08;
pub const TAB: u8 = '\t';
pub const SPACE: u8 = ' ';
pub const CARRIAGE_RETURN: u8 = '\r';
pub const PRINTABLE_START: u8 = 0x20;
pub const PRINTABLE_END: u8 = 0x7E;
|