doc: new fedora/rhel maintainer
[netsniff-ng.git] / src / tprintf.h
blobcb8a4230f3d918a657da10e6aa01f49b0ea350bc
1 /*
2 * netsniff-ng - the packet sniffing beast
3 * By Daniel Borkmann <daniel@netsniff-ng.org>
4 * Copyright 2009, 2010 Daniel Borkmann.
5 * Subject to the GPL, version 2.
6 */
8 #ifndef TPRINTF_H
9 #define TPRINTF_H
11 #define DEFAULT_TTY_SIZE 80
13 extern void tprintf_init(void);
14 extern void tprintf(char *msg, ...);
15 extern void tprintf_flush(void);
16 extern void tprintf_cleanup(void);
18 #define __reset "0"
19 #define __bold "1"
20 #define __black "30"
21 #define __red "31"
22 #define __green "32"
23 #define __yellow "33"
24 #define __blue "34"
25 #define __magenta "35"
26 #define __cyan "36"
27 #define __white "37"
28 #define __on_black "40"
29 #define __on_red "41"
30 #define __on_green "42"
31 #define __on_yellow "43"
32 #define __on_blue "44"
33 #define __on_magenta "45"
34 #define __on_cyan "46"
35 #define __on_white "47"
37 #define colorize_start(fore) "\033[" __##fore "m"
38 #define colorize_start_full(fore, back) "\033[" __##fore ";" __on_##back "m"
39 #define colorize_end() "\033[" __reset "m"
40 #define colorize_str(fore, text) \
41 colorize_start(fore) text colorize_end()
42 #define colorize_full_str(fore, back, text) \
43 colorize_start_full(fore, back) text colorize_end()
45 #endif /* TPRINTF_H */