13 lines
241 B
C
13 lines
241 B
C
#ifndef TUI_H
|
|
#define TUI_H
|
|
|
|
#include <stddef.h>
|
|
|
|
void tui_init(void);
|
|
void tui_run(void);
|
|
void tui_cleanup(void);
|
|
int send_command(const char *cmd);
|
|
char* tui_fzf_select(const char *const items[], size_t count, const char *prompt);
|
|
|
|
#endif
|