summaryrefslogtreecommitdiff
path: root/libterm/term_io.h
diff options
context:
space:
mode:
Diffstat (limited to 'libterm/term_io.h')
-rw-r--r--libterm/term_io.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/libterm/term_io.h b/libterm/term_io.h
new file mode 100644
index 0000000..3d9243f
--- /dev/null
+++ b/libterm/term_io.h
@@ -0,0 +1,14 @@
+#ifndef __LIBTERM_PRINT_UTILS_H
+#define __LIBTERM_PRINT_UTILS_H
+
+#include <stdio.h>
+#include <stdlib.h>
+
+#include "screen_modes.h"
+#include "term.h"
+
+int term_fprint( screen_mode_e, FILE* );
+int term_print( term_screen*, const char*, size_t, int, int );
+int term_getc( term_screen* );
+
+#endif