diff options
author | Jakob Kaivo <jkk@ung.org> | 2022-04-18 19:12:52 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2022-04-18 19:12:52 -0400 |
commit | 1fa82850d87a0f5526153655a2368c46ea447a90 (patch) | |
tree | 5ffd8c628a4a221b93cd68b36ec82b6e182bd314 /more.h | |
parent | 344424ffafe5e3b310b5595d897579544abdb90d (diff) |
switch to curses
Diffstat (limited to 'more.h')
-rw-r--r-- | more.h | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -3,15 +3,13 @@ struct more_tty { FILE *tty; - int lines; - int columns; }; struct more_file { FILE *f; FILE *backing; size_t topline; - fpos_t *lines; + fpos_t *tlines; size_t nlines; size_t mark[26]; size_t nbytes; @@ -20,7 +18,7 @@ struct more_file { size_t nbuf; }; -struct more_tty more_open_tty(int lines); +struct more_tty more_open_tty(int nlines); struct more_file more_open(const char *path); void more_close(struct more_file *mf); ssize_t more_getline(struct more_file *mf, size_t lineno); |