blob: 1b0d9073fb7cd64a8be9bf081159f307a5e951ac (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/* $Id */
#ifndef INCLUDE_ANSI_H
#define INCLUDE_ANSI_H
/* This is a more elegant style which is first introduced by pmore(piaip)
* and then promoted by Rong-en Fan (rafan). */
/* to help pmore know that we've already included this. */
#define PMORE_STYLE_ANSI
// Escapes.
#define ESC_NUM (0x1b)
#define ESC_STR "\x1b"
#define ESC_CHR '\x1b'
// Common ANSI commands.
#define ANSI_RESET ESC_STR "[m"
#define ANSI_COLOR(x) ESC_STR "[" #x "m"
#define ANSI_MOVETO(x,y) ESC_STR "[" #x ";" #y "H"
#define ANSI_CLRTOEND ESC_STR "[K"
#endif /* INCLUDE_ANSI_H */
/* vim:sw=4
*/
|