diff options
Diffstat (limited to 'more.h')
-rw-r--r-- | more.h | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -1,10 +1,6 @@ #define _XOPEN_SOURCE 700 #include <stdio.h> -struct more_tty { - FILE *tty; -}; - struct more_file { FILE *f; FILE *backing; @@ -18,7 +14,6 @@ struct more_file { size_t nbuf; }; -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); |