blob: 4e4d244c6ab0353c21655d26f339f44b6cf83a28 [file] [log] [blame]
MG Mud User88f12472016-06-24 23:31:02 +02001// MorgenGrauen MUDlib
2//
3// ansi.h -- Sequenzen fuer ANSI- und VT100-Terminals
4//
5// $Id: ansi.h,v 3.3 2000/02/12 16:18:42 Padreic Exp $
6
7#ifndef _ANSI_
8#define _ANSI_
9
10#define ANSI_BOLD ""
11#define ANSI_UNDERL ""
12#define ANSI_BLINK ""
13#define ANSI_INVERS ""
14
15#define ANSI_BLACK ""
16#define ANSI_RED ""
17#define ANSI_GREEN ""
18#define ANSI_YELLOW ""
19#define ANSI_BLUE ""
20#define ANSI_PURPLE ""
21#define ANSI_CYAN ""
22#define ANSI_WHITE ""
23
24#define ANSI_BG_BLACK ""
25#define ANSI_BG_RED ""
26#define ANSI_BG_GREEN ""
27#define ANSI_BG_YELLOW ""
28#define ANSI_BG_BLUE ""
29#define ANSI_BG_PURPLE ""
30#define ANSI_BG_CYAN ""
31#define ANSI_BG_WHITE ""
32
33#define ANSI_NORMAL ""
34
35#endif