diff options
Diffstat (limited to 'src/cmd/postscript/postreverse/postreverse.h')
| -rw-r--r-- | src/cmd/postscript/postreverse/postreverse.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/cmd/postscript/postreverse/postreverse.h b/src/cmd/postscript/postreverse/postreverse.h new file mode 100644 index 00000000..edae7a27 --- /dev/null +++ b/src/cmd/postscript/postreverse/postreverse.h @@ -0,0 +1,21 @@ +/* + * + * An array of type Pages is used to keep track of the starting and ending byte + * offsets for the pages we've been asked to print. + * + */ + +typedef struct { + long start; /* page starts at this byte offset */ + long stop; /* and ends here */ + int empty; /* dummy page if TRUE */ +} Pages; + +/* + * + * Some of the non-integer functions in postreverse.c. + * + */ + +char *copystdin(); + |
