aboutsummaryrefslogtreecommitdiffstats
path: root/src/prototypes.h
diff options
context:
space:
mode:
authorjames <>2008-02-07 00:39:13 +0000
committerjames <>2008-02-07 00:39:13 +0000
commit10e44cc4a65158fb6aaab3428a747ad4e5ead2f9 (patch)
tree2aef7fd3972bd6a8b67ee264c2b8c4b73e03e615 /src/prototypes.h
parentb4c47719823e9907f6040e1e899b927cbeb8282e (diff)
downloadsympathy-10e44cc4a65158fb6aaab3428a747ad4e5ead2f9.tar.gz
sympathy-10e44cc4a65158fb6aaab3428a747ad4e5ead2f9.tar.bz2
sympathy-10e44cc4a65158fb6aaab3428a747ad4e5ead2f9.zip
*** empty log message ***
Diffstat (limited to 'src/prototypes.h')
-rw-r--r--src/prototypes.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/prototypes.h b/src/prototypes.h
index 9a674db..5bbd01a 100644
--- a/src/prototypes.h
+++ b/src/prototypes.h
@@ -63,3 +63,8 @@ void vt102_reset(VT102 *v);
int vt102_dispatch(VT102 *v);
VT102 *vt102_new(TTY *t);
void vt102_free(VT102 *v);
+/* tty.c */
+TTY *tty_new_test(void);
+int tty_read(TTY *t, void *buf, int len);
+int tty_write(TTY *t, void *buf, int len);
+void tty_free(TTY *t);