aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/postscript/postreverse/postreverse.h
diff options
context:
space:
mode:
authorwkj <devnull@localhost>2004-05-16 07:54:22 +0000
committerwkj <devnull@localhost>2004-05-16 07:54:22 +0000
commitb855148c9b6d28fedfd083d037bcf246f1913d92 (patch)
tree0075eb6ea37427fa48b78cb937fabc04175cead1 /src/cmd/postscript/postreverse/postreverse.h
parent61f5c35c9465f0702739b41249a664d409f0482c (diff)
Checkpoint.
Diffstat (limited to 'src/cmd/postscript/postreverse/postreverse.h')
-rw-r--r--src/cmd/postscript/postreverse/postreverse.h21
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();
+