Missing header file.

This commit is contained in:
Paul Warren
2017-01-03 21:50:49 +00:00
parent 2866de1379
commit 5340a3b9af

15
tui.h Normal file
View File

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