diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2022-04-15 13:31:22 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2022-04-15 14:45:08 -0400 |
commit | 7241d6cc35134fcb5ec6dfa81bbd01e430b2415f (patch) | |
tree | 3b3dbde25dff9430ca644f680249a6add224f213 /color.h | |
parent | a571aa9ef6f3dc2099ee33c5040f8c54776ddece (diff) | |
download | bfs-7241d6cc35134fcb5ec6dfa81bbd01e430b2415f.tar.xz |
color: Support a separate $BFS_COLORS environment variable
Diffstat (limited to 'color.h')
-rw-r--r-- | color.h | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -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. |