about summary refs log tree commit diff stats
path: root/src/config/color.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/config/color.h')
-rw-r--r--src/config/color.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/config/color.h b/src/config/color.h
new file mode 100644
index 00000000..4075313f
--- /dev/null
+++ b/src/config/color.h
@@ -0,0 +1,12 @@
+#ifndef _COLOR_H_
+#define _COLOR_H_
+
+/* to access color names */
+#define COLOR_NAME_SIZE 256
+extern const char *color_names[];
+
+/* to add or clear cache */
+int color_pair_cache_get(const char *pair_name);
+void color_pair_cache_reset(void);
+
+#endif