This commit is contained in:
Timon_Post 2019-05-15 17:03:16 +02:00
parent 472614be37
commit a7f33e018f
2 changed files with 0 additions and 6 deletions

View File

@ -5,11 +5,7 @@ use crate::{Color, ITerminalColor};
use crossterm_utils::Result;
use crate::Colored;
use std::io;
use std::io::BufWriter;
use std::io::Stdout;
use std::io::Write;
use std::sync::RwLock;
/// This struct is an ANSI escape code implementation for color related actions.
pub struct AnsiColor;

View File

@ -4,8 +4,6 @@ macro_rules! csi {
($( $l:expr ),*) => { concat!("\x1B[", $( $l ),*) };
}
pub static mut flush_count: u32 = 0;
/// Write a string to standard output whereafter the screen will be flushed.
#[macro_export]
macro_rules! write_cout {