Files
jack-looper/tui.h
Loic Coenen efe51944a1 feat: add command mode with :q quit support and tests
Co-authored-by: aider (deepseek/deepseek-coder) <aider@aider.chat>
2026-05-01 15:23:00 +00:00

19 lines
309 B
C

#ifndef TUI_H
#define TUI_H
#include "engine.h"
// Initialize TUI
void tui_init(Engine *engine);
// Run the TUI main loop
void tui_run(Engine *engine);
// Cleanup TUI
void tui_cleanup(void);
// Handle command mode input (after pressing ':')
void tui_handle_command_mode(Engine *engine);
#endif // TUI_H