|
|
1 typedef struct {
2 Int lines; /* number of lines */
3 Int chars; /* number of characters */
4 Int zero; /* number of zeroes discarded */
5 Int split; /* number of splits of too long lines */
6 bool ill; /* incomplete last line */
7 } io;
8
9 extern bool io_load P((editbuf*, char*, Int, io*));
10 extern bool io_save P((editbuf*, char*, Int, Int, int, io*));
11