summaryrefslogtreecommitdiffstats
path: root/color.h
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2022-04-15 13:31:22 -0400
committerTavian Barnes <tavianator@tavianator.com>2022-04-15 14:45:08 -0400
commit7241d6cc35134fcb5ec6dfa81bbd01e430b2415f (patch)
tree3b3dbde25dff9430ca644f680249a6add224f213 /color.h
parenta571aa9ef6f3dc2099ee33c5040f8c54776ddece (diff)
downloadbfs-7241d6cc35134fcb5ec6dfa81bbd01e430b2415f.tar.xz
color: Support a separate $BFS_COLORS environment variable
Diffstat (limited to 'color.h')
-rw-r--r--color.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/color.h b/color.h
index 36450bf..edf1ef7 100644
--- a/color.h
+++ b/color.h
@@ -27,18 +27,16 @@
#include <stdio.h>
/**
- * A lookup table for colors.
+ * A color scheme.
*/
struct colors;
/**
* Parse a color table.
*
- * @param ls_colors
- * A color table in the LS_COLORS environment variable format.
* @return The parsed color table.
*/
-struct colors *parse_colors(const char *ls_colors);
+struct colors *parse_colors(void);
/**
* Free a color table.