plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

postreverse.h (387B)


      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();