diff options
author | Paul Warren <pdw@ex-parrot.com> | 2017-01-03 21:50:49 +0000 |
---|---|---|
committer | Paul Warren <pdw@ex-parrot.com> | 2017-01-03 21:50:49 +0000 |
commit | 5340a3b9af25e3330ca7e234aff159cda19e9ec7 (patch) | |
tree | b3aba3c0ad9c3714617fa25d767316ec2ebeb980 | |
parent | 2866de1379d414509d05188342302db1b2a6aa33 (diff) | |
download | iftop-5340a3b9af25e3330ca7e234aff159cda19e9ec7.zip |
Missing header file.
-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_ */ |