diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-12-13 17:41:49 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-12-13 17:41:49 +0000 |
commit | 75f043fedb97fb7ab7a50fad704f044f1ba8eb67 (patch) | |
tree | 09c815712d202b545d17da2eb0f64ea4dcaea025 /tmux.h | |
parent | de0a3a08407b0de61e20fb4829185d3d248a269c (diff) | |
download | rtmux-75f043fedb97fb7ab7a50fad704f044f1ba8eb67.tar.gz rtmux-75f043fedb97fb7ab7a50fad704f044f1ba8eb67.tar.bz2 rtmux-75f043fedb97fb7ab7a50fad704f044f1ba8eb67.zip |
Work around lack of dch.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.202 2008-12-10 20:25:41 nicm Exp $ */ +/* $Id: tmux.h,v 1.203 2008-12-13 17:41:49 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -953,6 +953,7 @@ void tty_set_title(struct tty *, const char *); int tty_open(struct tty *, char **); void tty_close(struct tty *); void tty_free(struct tty *); +void tty_write(struct tty *, struct screen *, int, ...); void tty_vwrite(struct tty *, struct screen *s, int, va_list); /* tty-keys.c */ |