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