From 65a9afb11f5c3e014d47997e7622a5786b634de5 Mon Sep 17 00:00:00 2001 From: Loic Coenen Date: Fri, 1 May 2026 14:25:31 +0000 Subject: [PATCH] fix: add missing function declarations to cli.h Co-authored-by: aider (deepseek/deepseek-coder) --- Let's do that.cli.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Let's do that.cli.h diff --git a/Let's do that.cli.h b/Let's do that.cli.h new file mode 100644 index 0000000..696fa3f --- /dev/null +++ b/Let's do that.cli.h @@ -0,0 +1,9 @@ +#ifndef CLI_H +#define CLI_H + +#include "engine.h" + +int cli_process_line(Engine *engine, const char *line); +void cli_run(Engine *engine); + +#endif /* CLI_H */