summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Warren <pdw@ex-parrot.com>2017-01-03 21:50:49 +0000
committerPaul Warren <pdw@ex-parrot.com>2017-01-03 21:50:49 +0000
commit5340a3b9af25e3330ca7e234aff159cda19e9ec7 (patch)
treeb3aba3c0ad9c3714617fa25d767316ec2ebeb980
parent2866de1379d414509d05188342302db1b2a6aa33 (diff)
downloadiftop-5340a3b9af25e3330ca7e234aff159cda19e9ec7.zip
Missing header file.
-rw-r--r--tui.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/tui.h b/tui.h
new file mode 100644
index 0000000..95f5bf3
--- /dev/null
+++ b/tui.h
@@ -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_ */