From 5ead7d42066286031cdd75b833fc9d3a2f6b3a53 Mon Sep 17 00:00:00 2001 From: Daniel Borkmann Date: Tue, 4 Jun 2013 12:22:03 +0200 Subject: misc: cleanup header comments Remove header comments where appropriate. And also clean up colorize a bit. Signed-off-by: Daniel Borkmann --- colorize.h | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 colorize.h (limited to 'colorize.h') diff --git a/colorize.h b/colorize.h new file mode 100644 index 0000000..928deb2 --- /dev/null +++ b/colorize.h @@ -0,0 +1,8 @@ +#ifndef COLORIZE_H +#define COLORIZE_H + +#define colorize_start(fore) "\033[" __##fore "m" +#define colorize_start_full(fore, back) "\033[" __##fore ";" __on_##back "m" +#define colorize_end() "\033[" __reset "m" + +#endif /* COLORIZE_H */ -- cgit v1.2.3-54-g00ecf