summaryrefslogtreecommitdiff
path: root/terminal/vt52.h
diff options
context:
space:
mode:
authorMichal Idziorek <m.i@gmx.at>2015-05-18 01:31:58 +0200
committerMichal Idziorek <m.i@gmx.at>2015-05-18 01:31:58 +0200
commitfe79552d9fcfd60d8c2bb828c6b93cf471ef7b75 (patch)
tree7bf842857ce4f485101848292405a96f322fe374 /terminal/vt52.h
parentdb22b587966b4a4eaa47536f32ca812532446bcb (diff)
fifo interface
Diffstat (limited to 'terminal/vt52.h')
-rw-r--r--terminal/vt52.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/terminal/vt52.h b/terminal/vt52.h
index 94502d1..9258cec 100644
--- a/terminal/vt52.h
+++ b/terminal/vt52.h
@@ -2,6 +2,7 @@
#define VT52_H
#include <stdint.h>
+#include <stdbool.h>
//
@@ -56,7 +57,7 @@ typedef struct vt52_tty_struct
}vt52_tty;
vt52_tty vt52_init(term_out *screen,term_in *input);
-void vt52_put(vt52_tty *tty, uint8_t c);
+bool vt52_put(vt52_tty *tty, uint8_t c);
void vt52_kb(vt52_tty *tty, uint8_t c);
#endif