diff options
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); |
