summaryrefslogtreecommitdiff
path: root/ted.h
diff options
context:
space:
mode:
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);