From 0bef6f759beb87d743c6dfb2a95d3e0b7075a462 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Fri, 24 Jul 2015 12:57:46 +0200 Subject: libsmartcols: don't link with tinfo Let's move color names to sequence translation to separate file to make it usable without all the stuff in lib/colors.c. Signed-off-by: Karel Zak --- lib/colors.c | 35 ----------------------------------- 1 file changed, 35 deletions(-) (limited to 'lib/colors.c') diff --git a/lib/colors.c b/lib/colors.c index da5a3e1f4..933bb810a 100644 --- a/lib/colors.c +++ b/lib/colors.c @@ -112,41 +112,6 @@ static int cmp_scheme_name(const void *a0, const void *b0) return strcmp(a->name, b->name); } -/* - * Maintains human readable color names - */ -const char *color_sequence_from_colorname(const char *str) -{ - static const struct ul_color_scheme basic_schemes[] = { - { "black", UL_COLOR_BLACK }, - { "blue", UL_COLOR_BLUE }, - { "brown", UL_COLOR_BROWN }, - { "cyan", UL_COLOR_CYAN }, - { "darkgray", UL_COLOR_DARK_GRAY }, - { "gray", UL_COLOR_GRAY }, - { "green", UL_COLOR_GREEN }, - { "lightblue", UL_COLOR_BOLD_BLUE }, - { "lightcyan", UL_COLOR_BOLD_CYAN }, - { "lightgray,", UL_COLOR_GRAY }, - { "lightgreen", UL_COLOR_BOLD_GREEN }, - { "lightmagenta", UL_COLOR_BOLD_MAGENTA }, - { "lightred", UL_COLOR_BOLD_RED }, - { "magenta", UL_COLOR_MAGENTA }, - { "red", UL_COLOR_RED }, - { "yellow", UL_COLOR_BOLD_YELLOW }, - }; - struct ul_color_scheme key = { .name = (char *) str }, *res; - - if (!str) - return NULL; - - res = bsearch(&key, basic_schemes, ARRAY_SIZE(basic_schemes), - sizeof(struct ul_color_scheme), - cmp_scheme_name); - return res ? res->seq : NULL; -} - - /* * Resets control struct (note that we don't allocate the struct) */ -- cgit v1.2.3-55-g7522