aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/term.h
blob: 1b8f51eecdd5cc9ac06b3266712bb3a5a774cc3b (plain)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
 * Asterisk -- A telephony toolkit for Linux.
 *
 * Handy terminal functions for vt* terms
 * 
 * Copyright (C) 1999, Mark Spencer
 *
 * Mark Spencer <markster@linux-support.net>
 *
 * This program is free software, distributed under the terms of
 * the GNU General Public License
 */

#ifndef _ASTERISK_TERM_H
#define _ASTERISK_TERM_H

#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {
#endif

#define ESC 0x1b
#define ATTR_RESET	0
#define ATTR_BRIGHT 1
#define ATTR_DIM	2
#define ATTR_UNDER	4
#define ATTR_BLINK	5
#define ATTR_REVER	7
#define ATTR_HIDDEN 8

#define COLOR_BLACK 	30
#define COLOR_GRAY  	30 | 128
#define COLOR_RED		31
#define COLOR_BRRED		31 | 128
#define COLOR_GREEN		32
#define COLOR_BRGREEN	32 | 128
#define COLOR_BROWN		33
#define COLOR_YELLOW	33 | 128
#define COLOR_BLUE		34 
#define COLOR_BRBLUE	34 | 128
#define COLOR_MAGENTA	35
#define COLOR_BRMAGENTA 35 | 128
#define COLOR_CYAN      36
#define COLOR_BRCYAN    36 | 128
#define COLOR_WHITE     37
#define COLOR_BRWHITE   37 | 128

extern char *term_color(char *outbuf, char *inbuf, int fgcolor, int bgcolor, int maxout);

extern char *term_prompt(char *outbuf, char *inbuf, int maxout);

extern char *term_prep(void);

extern char *term_end(void);

extern char *term_quit(void);

#if defined(__cplusplus) || defined(c_plusplus)
}
#endif

#endif