1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// License: see LICENSE file at root directory of main branch

//! # Some characters

#![cfg(feature="std")]

/// # Backspace
pub const BACKSPACE: u8 = 0x08;

/// # Form feed
pub const FORM_FEED: u8 = 0x0c;

/// # Line feed
pub const LINE_FEED: u8 = 0x0a;

/// # Carriage return
pub const CARRIAGE_RETURN: u8 = 0x0d;

/// # Horizontal tab
pub const HORIZONTAL_TAB: u8 = 0x09;