summaryrefslogtreecommitdiff
path: root/ted.h
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2023-01-05 11:52:57 -0500
committerpommicket <pommicket@gmail.com>2023-01-05 11:54:50 -0500
commitbe318b18a01481d16149c34f649c9cdb1f91979d (patch)
tree9a224f909a78170a67e7e42060d1069aebaed9e8 /ted.h
parentf897a6a62e9572f1f3cc6c7905192d49d7868c9a (diff)
clean up some TODOs
Diffstat (limited to 'ted.h')
-rw-r--r--ted.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/ted.h b/ted.h
index ff24530..0443087 100644
--- a/ted.h
+++ b/ted.h
@@ -1009,6 +1009,7 @@ void build_check_for_errors(Ted *ted);
void build_frame(Ted *ted, float x1, float y1, float x2, float y2);
// === colors.c ===
+void color_init(void);
ColorSetting color_setting_from_str(const char *str);
const char *color_setting_to_str(ColorSetting s);
Status color_from_str(const char *str, u32 *color);
@@ -1017,6 +1018,7 @@ Status color_from_str(const char *str, u32 *color);
ColorSetting color_for_symbol_kind(SymbolKind kind);
// === command.c ===
+void command_init(void);
Command command_from_str(const char *str);
const char *command_to_str(Command c);
void command_execute(Ted *ted, Command c, i64 argument);