summaryrefslogtreecommitdiffstats
path: root/utils/include/colors.h
diff options
context:
space:
mode:
authorManuel Bentele2020-10-23 15:18:01 +0200
committerManuel Bentele2020-10-23 15:18:01 +0200
commitdbb41ce2b7f309d394054a6bd1e33afd578798a5 (patch)
tree6a31092063d9f2fb5ac5720ec6759040e793c3d5 /utils/include/colors.h
parentSet Linux kernel version to unknown if it is not detectable (diff)
downloadxloop-dbb41ce2b7f309d394054a6bd1e33afd578798a5.tar.gz
xloop-dbb41ce2b7f309d394054a6bd1e33afd578798a5.tar.xz
xloop-dbb41ce2b7f309d394054a6bd1e33afd578798a5.zip
Move the source code of all xloop components to the common 'src' directory
Diffstat (limited to 'utils/include/colors.h')
-rw-r--r--utils/include/colors.h73
1 files changed, 0 insertions, 73 deletions
diff --git a/utils/include/colors.h b/utils/include/colors.h
deleted file mode 100644
index d4ae4e4..0000000
--- a/utils/include/colors.h
+++ /dev/null
@@ -1,73 +0,0 @@
-/*
- * Copyright (C) 2012 Ondrej Oprala <ooprala@redhat.com>
- * Copyright (C) 2012-2014 Karel Zak <kzak@redhat.com>
- *
- * This file may be distributed under the terms of the
- * GNU Lesser General Public License.
- */
-#ifndef UTIL_LINUX_COLORS_H
-#define UTIL_LINUX_COLORS_H
-
-#include <stdio.h>
-#include <unistd.h>
-
-#include "color-names.h"
-
-/* --color[=WHEN] */
-enum colortmode {
- UL_COLORMODE_AUTO = 0,
- UL_COLORMODE_NEVER,
- UL_COLORMODE_ALWAYS,
- UL_COLORMODE_UNDEF,
-
- __UL_NCOLORMODES /* last */
-};
-
-#ifdef USE_COLORS_BY_DEFAULT
-# define USAGE_COLORS_DEFAULT _("colors are enabled by default")
-#else
-# define USAGE_COLORS_DEFAULT _("colors are disabled by default")
-#endif
-
-extern int colormode_from_string(const char *str);
-extern int colormode_or_err(const char *str, const char *errmsg);
-
-/* Initialize the global variable UL_COLOR_TERM_OK */
-extern int colors_init(int mode, const char *util_name);
-
-/* Returns 1 or 0 */
-extern int colors_wanted(void);
-
-/* Returns UL_COLORMODE_* */
-extern int colors_mode(void);
-
-/* temporary enable/disable colors */
-extern void colors_off(void);
-extern void colors_on(void);
-
-
-/* Set the color */
-extern void color_fenable(const char *seq, FILE *f);
-
-extern void color_scheme_fenable(const char *name, const char *dflt, FILE *f);
-extern const char *color_scheme_get_sequence(const char *name, const char *dflt);
-
-static inline void color_enable(const char *seq)
-{
- color_fenable(seq, stdout);
-}
-
-static inline void color_scheme_enable(const char *name, const char *dflt)
-{
- color_scheme_fenable(name, dflt, stdout);
-}
-
-/* Reset colors to default */
-extern void color_fdisable(FILE *f);
-
-static inline void color_disable(void)
-{
- color_fdisable(stdout);
-}
-
-#endif /* UTIL_LINUX_COLORS_H */