Blob


1 /*
2 *
3 * An array of type Pages is used to keep track of the starting and ending byte
4 * offsets for the pages we've been asked to print.
5 *
6 */
8 typedef struct {
9 long start; /* page starts at this byte offset */
10 long stop; /* and ends here */
11 int empty; /* dummy page if TRUE */
12 } Pages;
14 /*
15 *
16 * Some of the non-integer functions in postreverse.c.
17 *
18 */
20 char *copystdin();