diff options
author | pommicket <pommicket@gmail.com> | 2023-01-01 23:32:54 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-01-01 23:32:54 -0500 |
commit | 4a8dcb2db975a3681ff63518a20ca8afc3137782 (patch) | |
tree | 0dbcb5d3edeb79cab37528045e69856d65956aa2 /ted.h | |
parent | 4c1c689240f9590f25b18337f2f9897b29d9e27d (diff) |
restructure colors.c
Diffstat (limited to 'ted.h')
-rw-r--r-- | ted.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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); |