]> git.proxmox.com Git - mirror_iproute2.git/blobdiff - include/color.h
man: tc-taprio.8: fix syntax error
[mirror_iproute2.git] / include / color.h
index 7fd685d0dcf825b28374059b25b2df1fcce82e2b..17ec56f3d7b4716ad085fb46a66aa13c66106480 100644 (file)
@@ -1,6 +1,9 @@
+/* SPDX-License-Identifier: GPL-2.0 */
 #ifndef __COLOR_H__
 #define __COLOR_H__ 1
 
+#include <stdbool.h>
+
 enum color_attr {
        COLOR_IFNAME,
        COLOR_MAC,
@@ -11,9 +14,14 @@ enum color_attr {
        COLOR_NONE
 };
 
-void enable_color(void);
-void check_if_color_enabled(void);
-void set_color_palette(void);
+enum color_opt {
+       COLOR_OPT_NEVER = 0,
+       COLOR_OPT_AUTO = 1,
+       COLOR_OPT_ALWAYS = 2
+};
+
+bool check_enable_color(int color, int json);
+bool matches_color(const char *arg, int *val);
 int color_fprintf(FILE *fp, enum color_attr attr, const char *fmt, ...);
 enum color_attr ifa_family_color(__u8 ifa_family);
 enum color_attr oper_state_color(__u8 state);