diff options
author | 2018-07-04 09:44:07 +0000 | |
---|---|---|
committer | 2018-07-04 09:44:07 +0000 | |
commit | 7621e88f98edd17e57504f445f15691e4f7ef997 (patch) | |
tree | d4d8795ba09acd60def48e74ee90a4b88f39100e /usr.bin/tmux/tmux.h | |
parent | Print the amount of bytes written, as intended, instead of -1 when (diff) | |
download | wireguard-openbsd-7621e88f98edd17e57504f445f15691e4f7ef997.tar.xz wireguard-openbsd-7621e88f98edd17e57504f445f15691e4f7ef997.zip |
Add accessors for grid linedata member, for some future work. From Dan
Aloni.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 82971931723..00081ad62a1 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.826 2018/06/08 20:54:22 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.827 2018/07/04 09:44:07 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -2006,6 +2006,8 @@ char *grid_string_cells(struct grid *, u_int, u_int, u_int, void grid_duplicate_lines(struct grid *, u_int, struct grid *, u_int, u_int); void grid_reflow(struct grid *, u_int, u_int *); +struct grid_line *grid_get_line(struct grid *, u_int); +void grid_adjust_lines(struct grid *, u_int); /* grid-view.c */ void grid_view_get_cell(struct grid *, u_int, u_int, struct grid_cell *); |