dpost.ps: increase linewidth to match groff
[troff.git] / tr2ps / glob.c
blob2826f4e5fe9f21d7e5e545c93d7c0b20892bdf64
1 /*
3 * Global varibles - for PostScript translators.
5 */
7 #include <stdio.h>
8 #include "gen.h"
10 char **argv; /* global so everyone can use them */
11 int argc;
13 int x_stat = 0; /* program exit status */
14 int debug = OFF; /* debug flag */
15 int ignore = OFF; /* what we do with FATAL errors */
17 long lineno = 0; /* line number */
18 long position = 0; /* byte position */
19 char *prog_name = ""; /* and program name - for errors */
20 char *temp_file = NULL; /* temporary file - for some programs */
21 char *fontencoding = NULL; /* text font encoding scheme */
23 int dobbox = FALSE; /* enable BoundingBox stuff if TRUE */
24 double pageheight = PAGEHEIGHT; /* only for BoundingBox calculations! */
25 double pagewidth = PAGEWIDTH;
27 int reading = UTFENCODING; /* input */
28 int writing = WRITING; /* and output encoding */