feat: add cli.h header with function declarations

Co-authored-by: aider (deepseek/deepseek-coder) <aider@aider.chat>
This commit is contained in:
Loic Coenen
2026-05-01 14:29:21 +00:00
parent 68c0d188a5
commit b661cc8873

9
cli.h
View File

@@ -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 */