summaryrefslogtreecommitdiff
path: root/include/asterisk/term.h
diff options
context:
space:
mode:
authorLuigi Rizzo <rizzo@icir.org>2006-03-31 10:29:50 +0000
committerLuigi Rizzo <rizzo@icir.org>2006-03-31 10:29:50 +0000
commit7b06841395081d0a4b60a8c75531742c7ba92e70 (patch)
tree8fc86911fe0f6b74bba1c1fbd4a2a3f330aa8287 /include/asterisk/term.h
parent0b655c3ce99c003bdd020ad3760aea420a150d80 (diff)
removal of trailing whitespace and useless 'extern'
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@16653 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk/term.h')
-rw-r--r--include/asterisk/term.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/include/asterisk/term.h b/include/asterisk/term.h
index 499927600..f3c41d8eb 100644
--- a/include/asterisk/term.h
+++ b/include/asterisk/term.h
@@ -37,35 +37,35 @@ extern "C" {
#define ATTR_HIDDEN 8
#define COLOR_BLACK 30
-#define COLOR_GRAY 30 | 128
+#define COLOR_GRAY (30 | 128)
#define COLOR_RED 31
-#define COLOR_BRRED 31 | 128
+#define COLOR_BRRED (31 | 128)
#define COLOR_GREEN 32
-#define COLOR_BRGREEN 32 | 128
+#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_YELLOW (33 | 128)
+#define COLOR_BLUE 34
+#define COLOR_BRBLUE (34 | 128)
#define COLOR_MAGENTA 35
-#define COLOR_BRMAGENTA 35 | 128
+#define COLOR_BRMAGENTA (35 | 128)
#define COLOR_CYAN 36
-#define COLOR_BRCYAN 36 | 128
+#define COLOR_BRCYAN (36 | 128)
#define COLOR_WHITE 37
-#define COLOR_BRWHITE 37 | 128
+#define COLOR_BRWHITE (37 | 128)
-extern char *term_color(char *outbuf, const char *inbuf, int fgcolor, int bgcolor, int maxout);
+char *term_color(char *outbuf, const char *inbuf, int fgcolor, int bgcolor, int maxout);
-extern char *term_color_code(char *outbuf, int fgcolor, int bgcolor, int maxout);
+char *term_color_code(char *outbuf, int fgcolor, int bgcolor, int maxout);
-extern char *term_strip(char *outbuf, char *inbuf, int maxout);
+char *term_strip(char *outbuf, char *inbuf, int maxout);
-extern char *term_prompt(char *outbuf, const char *inbuf, int maxout);
+char *term_prompt(char *outbuf, const char *inbuf, int maxout);
-extern char *term_prep(void);
+char *term_prep(void);
-extern char *term_end(void);
+char *term_end(void);
-extern char *term_quit(void);
+char *term_quit(void);
#if defined(__cplusplus) || defined(c_plusplus)
}