diff options
-rw-r--r-- | tui.h | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -0,0 +1,15 @@ +/* + * tui.h: + * + * + */ + +#ifndef __TUI_H_ /* include guard */ +#define __TUI_H_ + +void tui_print(void); +void tui_init(void); +void tui_loop(void); +void tui_tick(int); + +#endif /* __TUI_H_ */ |