xref: /plan9/sys/src/cmd/postscript/postreverse/postreverse.h (revision 219b2ee8daee37f4aad58d63f21287faa8e4ffdc)
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  */
7 
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;
13 
14 /*
15  *
16  * Some of the non-integer functions in postreverse.c.
17  *
18  */
19 
20 char	*copystdin();
21 
22