summaryrefslogtreecommitdiff
path: root/ted.h
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2023-01-01 23:32:54 -0500
committerpommicket <pommicket@gmail.com>2023-01-01 23:32:54 -0500
commit4a8dcb2db975a3681ff63518a20ca8afc3137782 (patch)
tree0dbcb5d3edeb79cab37528045e69856d65956aa2 /ted.h
parent4c1c689240f9590f25b18337f2f9897b29d9e27d (diff)
restructure colors.c
Diffstat (limited to 'ted.h')
-rw-r--r--ted.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/ted.h b/ted.h
index 662c588..f649bff 100644
--- a/ted.h
+++ b/ted.h
@@ -592,6 +592,11 @@ typedef struct Ted {
char error_shown[512]; // error display in box on screen
} Ted;
+// === colors.c ===
+ColorSetting color_setting_from_str(char const *str);
+const char *color_setting_to_str(ColorSetting s);
+Status color_from_str(const char *str, u32 *color);
+ColorSetting color_for_symbol_kind(SymbolKind kind);
// === gl.c ===
GlRcSAB *gl_rc_sab_new(GLuint shader, GLuint array, GLuint buffer);
void gl_rc_sab_incref(GlRcSAB *s);