Project is published.

This commit is contained in:
Schmidt Peter
2026-05-21 14:27:40 +02:00
committed by GitHub
commit 65e7c86424
24 changed files with 1793 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
#ifndef TUI_H
#define TUI_H
#include "make_ops.h"
#include <stddef.h>
/* Arrow-key driven target picker.
* Fills `selected` with the chosen target name.
* Returns 0 on selection, -1 if the user cancelled (q / ESC). */
int tui_pick_target(const MakeTargets *targets, char *selected, size_t sel_size);
/* Two-pane log browser: list on left, preview on right.
* Keys: ↑↓ navigate Enter open in less d delete q quit */
void tui_log_browser(const char *log_dir);
#endif /* TUI_H */