aboutsummaryrefslogtreecommitdiffstats
path: root/common.c
diff options
context:
space:
mode:
Diffstat (limited to 'common.c')
-rw-r--r--common.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/common.c b/common.c
index bbabfc9..56e59d3 100644
--- a/common.c
+++ b/common.c
@@ -27,10 +27,10 @@
*/
#include <ctype.h>
+#include <err.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#include <err.h>
#include "common.h"
@@ -48,17 +48,17 @@ parseansi(char *ansi, struct color *color)
while ((token = strsep(&ansi, ";")) != NULL) {
num = strtonum(token, 0, 47, NULL);
switch (num) {
- case 1:
- bold = true;
- break;
- case 4:
- underline = true;
- break;
- default:
- if (num <= 37)
- color->fg = (char)((num - 30) + 97);
- else if (num <= 47)
- color->bg = (char)((num - 40) + 97);
+ case 1:
+ bold = true;
+ break;
+ case 4:
+ underline = true;
+ break;
+ default:
+ if (num <= 37)
+ color->fg = (char)((num - 30) + 97);
+ else if (num <= 47)
+ color->bg = (char)((num - 40) + 97);
}
}
if (bold)