summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-05-01 09:36:19 -0400
committermidipix <writeonce@midipix.org>2016-05-01 14:56:19 -0400
commiteca81ba339c6e34fc678f5f138bea08a3561f37a (patch)
tree8df7521e7b4654ae83376a5ef1d41b962a5f6d90 /src
parent882f5531ba847eeda591ae8786c4f5f4549501c0 (diff)
downloadsofort-eca81ba339c6e34fc678f5f138bea08a3561f37a.tar.bz2
sofort-eca81ba339c6e34fc678f5f138bea08a3561f37a.tar.xz
argv.h: usage screen generator: add colors.
Diffstat (limited to 'src')
-rw-r--r--src/internal/argv/argv.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/internal/argv/argv.h b/src/internal/argv/argv.h
index 4015527..9bbb07f 100644
--- a/src/internal/argv/argv.h
+++ b/src/internal/argv/argv.h
@@ -15,6 +15,7 @@
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
+#include <unistd.h>
#define ARGV_VERBOSITY_NONE 0x00
#define ARGV_VERBOSITY_ERRORS 0x01
@@ -748,10 +749,21 @@ static void argv_usage(
const size_t optcap = 64;
const size_t width = 80;
const char indent[] = " ";
+ const char creset[] = "\x1b[0m";
+ const char cbold [] = "\x1b[1m";
+ const char cgreen[] = "\x1b[32m";
+ const char cblue [] = "\x1b[34m";
+ const char ccyan [] = "\x1b[36m";
+ const char * color = ccyan;
+ bool fcolor;
fshort = mode ? !strcmp(mode,"short") : 0;
flong = fshort ? 0 : mode && !strcmp(mode,"long");
fboth = !fshort && !flong;
+ fcolor = isatty(STDOUT_FILENO);
+
+ if (fcolor)
+ fprintf(stdout,"%s%s",cbold,cgreen);
if (header)
fprintf(stdout,"%s",header);
@@ -791,6 +803,12 @@ static void argv_usage(
desclen = (optlen < width / 2) ? width - optlen : optlen;
for (option=options; option->short_name || option->long_name; option++) {
+ /* color */
+ if (fcolor) {
+ color = (color == ccyan) ? cblue : ccyan;
+ fputs(color,stdout);
+ }
+
/* description, using either paradigm or argname if applicable */
snprintf(description,sizeof(description),option->description,
option->paradigm
@@ -870,6 +888,9 @@ static void argv_usage(
}
}
}
+
+ if (fcolor)
+ fputs(creset,stdout);
}
#endif