termcodes 0.0.1

A library for styled output in ANSI terminals.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![no_std]

mod std {
    pub use core::fmt;
    pub use core::str;
}

#[macro_use]
mod macros;
pub mod clear;
pub mod color;
pub mod style;