postreverse.h 388 B

123456789101112131415161718192021
  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. typedef struct {
  8. long start; /* page starts at this byte offset */
  9. long stop; /* and ends here */
  10. int empty; /* dummy page if TRUE */
  11. } Pages;
  12. /*
  13. *
  14. * Some of the non-integer functions in postreverse.c.
  15. *
  16. */
  17. char *copystdin();