blob: c1c29831159af5ad06386dd3c6956becf80f977b [file] [log] [blame]
Mathias Nymand7bd2db2015-04-28 13:18:21 +03001#ifndef __COLOR_H__
2#define __COLOR_H__ 1
3
4enum color_attr {
5 COLOR_IFNAME,
6 COLOR_MAC,
7 COLOR_INET,
8 COLOR_INET6,
9 COLOR_OPERSTATE_UP,
Phil Suttera1121aa2016-03-22 19:35:13 +010010 COLOR_OPERSTATE_DOWN,
11 COLOR_CLEAR
Mathias Nymand7bd2db2015-04-28 13:18:21 +030012};
13
14void enable_color(void);
15int color_fprintf(FILE *fp, enum color_attr attr, const char *fmt, ...);
Phil Suttera1121aa2016-03-22 19:35:13 +010016enum color_attr ifa_family_color(__u8 ifa_family);
17enum color_attr oper_state_color(__u8 state);
Mathias Nymand7bd2db2015-04-28 13:18:21 +030018
19#endif