1 /*	lp.h	4.8	85/02/07	*/
2 /*
3  * Global definitions for the line printer system.
4  */
5 
6 #include <stdio.h>
7 #include <sys/param.h>
8 #include <sys/file.h>
9 #include <sys/dir.h>
10 #include <sys/stat.h>
11 #include <sys/socket.h>
12 #include <sys/un.h>
13 #include <netinet/in.h>
14 #include <netdb.h>
15 #include <pwd.h>
16 #include <syslog.h>
17 #include <signal.h>
18 #include <sys/wait.h>
19 #include <sgtty.h>
20 #include <ctype.h>
21 #include <errno.h>
22 #include "lp.local.h"
23 
24 extern int	DU;		/* daeomon user-id */
25 extern int	MX;		/* maximum number of blocks to copy */
26 extern int	MC;		/* maximum number of copies allowed */
27 extern char	*LP;		/* line printer device name */
28 extern char	*RM;		/* remote machine name */
29 extern char	*RG;		/* restricted group */
30 extern char	*RP;		/* remote printer name */
31 extern char	*LO;		/* lock file name */
32 extern char	*ST;		/* status file name */
33 extern char	*SD;		/* spool directory */
34 extern char	*AF;		/* accounting file */
35 extern char	*LF;		/* log file for error messages */
36 extern char	*OF;		/* name of output filter (created once) */
37 extern char	*IF;		/* name of input filter (created per job) */
38 extern char	*RF;		/* name of fortran text filter (per job) */
39 extern char	*TF;		/* name of troff(1) filter (per job) */
40 extern char	*NF;		/* name of ditroff(1) filter (per job) */
41 extern char	*DF;		/* name of tex filter (per job) */
42 extern char	*GF;		/* name of graph(1G) filter (per job) */
43 extern char	*VF;		/* name of raster filter (per job) */
44 extern char	*CF;		/* name of cifplot filter (per job) */
45 extern char	*FF;		/* form feed string */
46 extern char	*TR;		/* trailer string to be output when Q empties */
47 extern short	SC;		/* suppress multiple copies */
48 extern short	SF;		/* suppress FF on each print job */
49 extern short	SH;		/* suppress header page */
50 extern short	SB;		/* short banner instead of normal header */
51 extern short	RW;		/* open LP for reading and writing */
52 extern short	PW;		/* page width */
53 extern short	PX;		/* page width in pixels */
54 extern short	PY;		/* page length in pixels */
55 extern short	PL;		/* page length */
56 extern short	BR;		/* baud rate if lp is a tty */
57 extern int	FC;		/* flags to clear if lp is a tty */
58 extern int	FS;		/* flags to set if lp is a tty */
59 extern int	XC;		/* flags to clear for local mode */
60 extern int	XS;		/* flags to set for local mode */
61 extern short	RS;		/* restricted to those with local accounts */
62 
63 extern char	line[BUFSIZ];
64 extern char	pbuf[];		/* buffer for printcap entry */
65 extern char	*bp;		/* pointer into ebuf for pgetent() */
66 extern char	*name;		/* program name */
67 extern char	*printer;	/* printer name */
68 extern char	host[32];	/* host machine name */
69 extern char	*from;		/* client's machine name */
70 extern int	errno;
71 
72 /*
73  * Structure used for building a sorted list of control files.
74  */
75 struct queue {
76 	time_t	q_time;			/* modification time */
77 	char	q_name[MAXNAMLEN+1];	/* control file name */
78 };
79 
80 char	*pgetstr();
81 char	*malloc();
82 char	*getenv();
83 char	*index();
84 char	*rindex();
85