sj/
bytes.rs

1/*
2==--==--==--==--==--==--==--==--==--==--==--==--==--==--==--==--
3
4SJ
5
6Copyright (C) 2019-2025  Anonymous
7
8There are several releases over multiple years,
9they are listed as ranges, such as: "2019-2025".
10
11This program is free software: you can redistribute it and/or modify
12it under the terms of the GNU Lesser General Public License as published by
13the Free Software Foundation, either version 3 of the License, or
14(at your option) any later version.
15
16This program is distributed in the hope that it will be useful,
17but WITHOUT ANY WARRANTY; without even the implied warranty of
18MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19GNU Lesser General Public License for more details.
20
21You should have received a copy of the GNU Lesser General Public License
22along with this program.  If not, see <https://www.gnu.org/licenses/>.
23
24::--::--::--::--::--::--::--::--::--::--::--::--::--::--::--::--
25*/
26
27//! # Some characters
28
29#![cfg(feature="std")]
30#![doc(cfg(feature="std"))]
31
32/// # Backspace
33pub (crate) const BACKSPACE: u8 = 0x08;
34
35/// # Form feed
36pub (crate) const FORM_FEED: u8 = 0x0c;
37
38/// # Line feed
39pub (crate) const LINE_FEED: u8 = 0x0a;
40
41/// # Carriage return
42pub (crate) const CARRIAGE_RETURN: u8 = 0x0d;
43
44/// # Horizontal tab
45pub (crate) const HORIZONTAL_TAB: u8 = 0x09;