Home | History | Annotate | Line # | Download | only in pac
pac.c revision 1.15
      1  1.15  jdolecek /*	$NetBSD: pac.c,v 1.15 2000/07/16 21:33:26 jdolecek Exp $	*/
      2  1.10       mrg 
      3   1.1       cgd /*
      4   1.3       cgd  * Copyright (c) 1983, 1993
      5   1.3       cgd  *	The Regents of the University of California.  All rights reserved.
      6   1.3       cgd  *
      7   1.1       cgd  *
      8   1.1       cgd  * Redistribution and use in source and binary forms, with or without
      9   1.1       cgd  * modification, are permitted provided that the following conditions
     10   1.1       cgd  * are met:
     11   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     12   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     13   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     14   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     15   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     16   1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     17   1.1       cgd  *    must display the following acknowledgement:
     18   1.1       cgd  *	This product includes software developed by the University of
     19   1.1       cgd  *	California, Berkeley and its contributors.
     20   1.1       cgd  * 4. Neither the name of the University nor the names of its contributors
     21   1.1       cgd  *    may be used to endorse or promote products derived from this software
     22   1.1       cgd  *    without specific prior written permission.
     23   1.1       cgd  *
     24   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     25   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     26   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     27   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     28   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     29   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     30   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     31   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     32   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     33   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     34   1.1       cgd  * SUCH DAMAGE.
     35   1.1       cgd  */
     36   1.1       cgd 
     37  1.10       mrg #include <sys/cdefs.h>
     38   1.1       cgd #ifndef lint
     39  1.10       mrg __COPYRIGHT("@(#) Copyright (c) 1983, 1993\n\
     40  1.10       mrg 	The Regents of the University of California.  All rights reserved.\n");
     41   1.9     mikel #if 0
     42   1.3       cgd static char sccsid[] = "@(#)pac.c	8.1 (Berkeley) 6/6/93";
     43   1.9     mikel #else
     44  1.15  jdolecek __RCSID("$NetBSD: pac.c,v 1.15 2000/07/16 21:33:26 jdolecek Exp $");
     45   1.9     mikel #endif
     46   1.1       cgd #endif /* not lint */
     47   1.1       cgd 
     48   1.1       cgd /*
     49   1.1       cgd  * Do Printer accounting summary.
     50   1.1       cgd  * Currently, usage is
     51   1.1       cgd  *	pac [-Pprinter] [-pprice] [-s] [-r] [-c] [-m] [user ...]
     52   1.1       cgd  * to print the usage information for the named people.
     53   1.1       cgd  */
     54   1.1       cgd 
     55   1.3       cgd #include <sys/param.h>
     56   1.3       cgd 
     57   1.3       cgd #include <dirent.h>
     58   1.9     mikel #include <stdio.h>
     59   1.3       cgd #include <stdlib.h>
     60   1.3       cgd #include <string.h>
     61   1.9     mikel #include <unistd.h>
     62  1.10       mrg #include <err.h>
     63  1.10       mrg 
     64   1.3       cgd #include "lp.h"
     65   1.1       cgd #include "lp.local.h"
     66   1.1       cgd 
     67   1.3       cgd static char	*acctfile;	/* accounting file (input data) */
     68   1.3       cgd static int	 allflag = 1;	/* Get stats on everybody */
     69   1.3       cgd static int	 errs;
     70   1.3       cgd static int	 hcount;	/* Count of hash entries */
     71   1.3       cgd static int	 mflag = 0;	/* disregard machine names */
     72   1.3       cgd static int	 pflag = 0;	/* 1 if -p on cmd line */
     73   1.3       cgd static float	 price = 0.02;	/* cost per page (or what ever) */
     74   1.3       cgd static long	 price100;	/* per-page cost in 100th of a cent */
     75   1.3       cgd static int	 reverse;	/* Reverse sort order */
     76   1.3       cgd static int	 sort;		/* Sort by cost */
     77   1.3       cgd static char	*sumfile;	/* summary file */
     78   1.3       cgd static int	 summarize;	/* Compress accounting file */
     79   1.1       cgd 
     80   1.1       cgd /*
     81   1.1       cgd  * Grossness follows:
     82   1.1       cgd  *  Names to be accumulated are hashed into the following
     83   1.1       cgd  *  table.
     84   1.1       cgd  */
     85   1.1       cgd 
     86   1.1       cgd #define	HSHSIZE	97			/* Number of hash buckets */
     87   1.1       cgd 
     88   1.1       cgd struct hent {
     89   1.1       cgd 	struct	hent *h_link;		/* Forward hash link */
     90   1.1       cgd 	char	*h_name;		/* Name of this user */
     91   1.1       cgd 	float	h_feetpages;		/* Feet or pages of paper */
     92   1.1       cgd 	int	h_count;		/* Number of runs */
     93   1.1       cgd };
     94   1.1       cgd 
     95   1.3       cgd static struct	hent	*hashtab[HSHSIZE];	/* Hash table proper */
     96   1.3       cgd 
     97   1.3       cgd static void	account __P((FILE *));
     98  1.11  jdolecek static int	chkprinter __P((const char *));
     99   1.3       cgd static void	dumpit __P((void));
    100  1.11  jdolecek static int	hash __P((const char *));
    101  1.11  jdolecek static struct	hent *enter __P((const char *));
    102  1.11  jdolecek static struct	hent *lookup __P((const char *));
    103   1.3       cgd static int	qucmp __P((const void *, const void *));
    104   1.3       cgd static void	rewrite __P((void));
    105  1.10       mrg static void	usage __P((void));
    106  1.11  jdolecek int		main __P((int, char * const []));
    107   1.1       cgd 
    108   1.7       jtc int
    109   1.1       cgd main(argc, argv)
    110   1.3       cgd 	int argc;
    111  1.11  jdolecek 	char * const argv[];
    112   1.1       cgd {
    113  1.10       mrg 	FILE *acct;
    114  1.12  jdolecek 	int opt;
    115   1.1       cgd 
    116  1.12  jdolecek 	while ((opt = getopt(argc, argv, "P:p:scmr")) != -1) {
    117  1.12  jdolecek 		switch(opt) {
    118  1.11  jdolecek 		case 'P':
    119  1.11  jdolecek 			/*
    120  1.11  jdolecek 			 * Printer name.
    121  1.11  jdolecek 			 */
    122  1.13  jdolecek 			printer = optarg;
    123  1.11  jdolecek 			continue;
    124  1.11  jdolecek 
    125  1.11  jdolecek 		case 'p':
    126  1.11  jdolecek 			/*
    127  1.11  jdolecek 			 * get the price.
    128  1.11  jdolecek 			 */
    129  1.13  jdolecek 			price = atof(optarg);
    130  1.11  jdolecek 			pflag = 1;
    131  1.11  jdolecek 			continue;
    132  1.11  jdolecek 
    133  1.11  jdolecek 		case 's':
    134  1.11  jdolecek 			/*
    135  1.11  jdolecek 			 * Summarize and compress accounting file.
    136  1.11  jdolecek 			 */
    137  1.11  jdolecek 			summarize++;
    138  1.11  jdolecek 			continue;
    139  1.11  jdolecek 
    140  1.11  jdolecek 		case 'c':
    141  1.11  jdolecek 			/*
    142  1.11  jdolecek 			 * Sort by cost.
    143  1.11  jdolecek 			 */
    144  1.11  jdolecek 			sort++;
    145  1.11  jdolecek 			continue;
    146  1.11  jdolecek 
    147  1.11  jdolecek 		case 'm':
    148  1.11  jdolecek 			/*
    149  1.11  jdolecek 			 * disregard machine names for each user
    150  1.11  jdolecek 			 */
    151  1.11  jdolecek 			mflag = 1;
    152  1.11  jdolecek 			continue;
    153  1.11  jdolecek 
    154  1.11  jdolecek 		case 'r':
    155  1.11  jdolecek 			/*
    156  1.11  jdolecek 			 * Reverse sorting order.
    157  1.11  jdolecek 			 */
    158  1.11  jdolecek 			reverse++;
    159  1.11  jdolecek 			continue;
    160  1.11  jdolecek 
    161  1.11  jdolecek 		default:
    162  1.11  jdolecek 			usage();
    163  1.11  jdolecek 			/* NOTREACHED */
    164  1.11  jdolecek 		}
    165  1.11  jdolecek 	}
    166  1.11  jdolecek 	argc -= optind;
    167  1.11  jdolecek 	argv += optind;
    168   1.1       cgd 
    169  1.11  jdolecek 	/*
    170  1.11  jdolecek 	 * If there are any arguments left, they're names of users
    171  1.11  jdolecek 	 * we want to print info for. In that case, put them in the hash
    172  1.11  jdolecek 	 * table and unset allflag.
    173  1.11  jdolecek 	 */
    174  1.11  jdolecek 	for( ; argc > 0; argc--, argv++) {
    175  1.11  jdolecek 		(void)enter(*argv);
    176   1.1       cgd 		allflag = 0;
    177   1.1       cgd 	}
    178  1.11  jdolecek 
    179   1.1       cgd 	if (printer == NULL && (printer = getenv("PRINTER")) == NULL)
    180   1.1       cgd 		printer = DEFLP;
    181   1.1       cgd 	if (!chkprinter(printer)) {
    182   1.1       cgd 		printf("pac: unknown printer %s\n", printer);
    183   1.1       cgd 		exit(2);
    184   1.1       cgd 	}
    185   1.1       cgd 
    186  1.10       mrg 	if ((acct = fopen(acctfile, "r")) == NULL)
    187  1.10       mrg 		err(1, "%s", acctfile);
    188   1.1       cgd 	account(acct);
    189   1.1       cgd 	fclose(acct);
    190   1.1       cgd 	if ((acct = fopen(sumfile, "r")) != NULL) {
    191   1.1       cgd 		account(acct);
    192   1.1       cgd 		fclose(acct);
    193   1.1       cgd 	}
    194   1.1       cgd 	if (summarize)
    195   1.1       cgd 		rewrite();
    196   1.1       cgd 	else
    197   1.1       cgd 		dumpit();
    198   1.1       cgd 	exit(errs);
    199   1.1       cgd }
    200   1.1       cgd 
    201   1.1       cgd /*
    202   1.1       cgd  * Read the entire accounting file, accumulating statistics
    203   1.1       cgd  * for the users that we have in the hash table.  If allflag
    204   1.1       cgd  * is set, then just gather the facts on everyone.
    205   1.1       cgd  * Note that we must accomodate both the active and summary file
    206   1.1       cgd  * formats here.
    207  1.15  jdolecek  * Format of accounting file is
    208  1.15  jdolecek  *	feet_per_page	[runs_count] [hostname:]username
    209  1.15  jdolecek  * Some software relies on whitespace between runs_count and hostname:username
    210  1.15  jdolecek  * being optional (such as Ghostscript's unix-lpr.sh).
    211  1.15  jdolecek  *
    212   1.1       cgd  * Host names are ignored if the -m flag is present.
    213   1.1       cgd  */
    214   1.3       cgd static void
    215   1.1       cgd account(acct)
    216  1.10       mrg 	FILE *acct;
    217   1.1       cgd {
    218  1.15  jdolecek 	char who[BUFSIZ];
    219   1.1       cgd 	char linebuf[BUFSIZ];
    220  1.15  jdolecek 	float t;
    221  1.10       mrg 	char *cp, *cp2;
    222  1.10       mrg 	struct hent *hp;
    223  1.10       mrg 	int ic;
    224   1.1       cgd 
    225   1.1       cgd 	while (fgets(linebuf, BUFSIZ, acct) != NULL) {
    226  1.15  jdolecek 		if (sscanf(linebuf, "%f %d%s", &t, &ic, who) == 0) {
    227  1.15  jdolecek 			sscanf(linebuf, "%f %s", &t, who);
    228  1.15  jdolecek 			ic = 1;
    229  1.15  jdolecek 		}
    230  1.15  jdolecek 
    231  1.15  jdolecek 		/* if -m was specified, don't use the hostname part */
    232  1.15  jdolecek 		if (mflag && (cp2 = strchr(who, ':')))
    233  1.15  jdolecek 			cp = cp2 + 1;
    234  1.15  jdolecek 		else
    235  1.15  jdolecek 			cp = who;
    236  1.15  jdolecek 
    237   1.1       cgd 		hp = lookup(cp);
    238   1.3       cgd 		if (hp == NULL) {
    239   1.1       cgd 			if (!allflag)
    240   1.1       cgd 				continue;
    241   1.1       cgd 			hp = enter(cp);
    242   1.1       cgd 		}
    243   1.1       cgd 		hp->h_feetpages += t;
    244   1.1       cgd 		if (ic)
    245   1.1       cgd 			hp->h_count += ic;
    246   1.1       cgd 		else
    247   1.1       cgd 			hp->h_count++;
    248   1.1       cgd 	}
    249   1.1       cgd }
    250   1.1       cgd 
    251   1.1       cgd /*
    252   1.1       cgd  * Sort the hashed entries by name or footage
    253   1.1       cgd  * and print it all out.
    254   1.1       cgd  */
    255   1.3       cgd static void
    256   1.1       cgd dumpit()
    257   1.1       cgd {
    258   1.1       cgd 	struct hent **base;
    259  1.10       mrg 	struct hent *hp, **ap;
    260  1.10       mrg 	int hno, c, runs;
    261   1.1       cgd 	float feet;
    262   1.1       cgd 
    263   1.1       cgd 	hp = hashtab[0];
    264   1.1       cgd 	hno = 1;
    265   1.1       cgd 	base = (struct hent **) calloc(sizeof hp, hcount);
    266  1.10       mrg 	if (base == NULL)
    267  1.10       mrg 		err(1, "calloc");
    268   1.1       cgd 	for (ap = base, c = hcount; c--; ap++) {
    269   1.3       cgd 		while (hp == NULL)
    270   1.1       cgd 			hp = hashtab[hno++];
    271   1.1       cgd 		*ap = hp;
    272   1.1       cgd 		hp = hp->h_link;
    273   1.1       cgd 	}
    274   1.1       cgd 	qsort(base, hcount, sizeof hp, qucmp);
    275  1.11  jdolecek 	printf(" pages/feet runs price    %s\n",
    276  1.11  jdolecek 		(mflag ? "login" : "host name and login"));
    277  1.11  jdolecek 	printf(" ---------- ---- -------- ----------------------\n");
    278   1.1       cgd 	feet = 0.0;
    279   1.1       cgd 	runs = 0;
    280   1.1       cgd 	for (ap = base, c = hcount; c--; ap++) {
    281   1.1       cgd 		hp = *ap;
    282   1.1       cgd 		runs += hp->h_count;
    283   1.1       cgd 		feet += hp->h_feetpages;
    284  1.11  jdolecek 		printf("    %7.2f %4d $%7.2f %s\n",
    285  1.15  jdolecek 			hp->h_feetpages, hp->h_count,
    286  1.15  jdolecek 			hp->h_feetpages * price * hp->h_count,
    287  1.11  jdolecek 			hp->h_name);
    288   1.1       cgd 	}
    289   1.1       cgd 	if (allflag) {
    290  1.11  jdolecek 		printf(" ---------- ---- -------- ----------------------\n");
    291  1.15  jdolecek 		printf("Sum:%7.2f %4d $%7.2f\n", feet, runs,
    292  1.15  jdolecek 			feet * price * runs);
    293   1.1       cgd 	}
    294   1.1       cgd }
    295   1.1       cgd 
    296   1.1       cgd /*
    297   1.1       cgd  * Rewrite the summary file with the summary information we have accumulated.
    298   1.1       cgd  */
    299   1.3       cgd static void
    300   1.1       cgd rewrite()
    301   1.1       cgd {
    302  1.10       mrg 	struct hent *hp;
    303  1.10       mrg 	int i;
    304  1.10       mrg 	FILE *acctf;
    305   1.1       cgd 
    306   1.1       cgd 	if ((acctf = fopen(sumfile, "w")) == NULL) {
    307  1.10       mrg 		warn("%s", sumfile);
    308   1.1       cgd 		errs++;
    309   1.1       cgd 		return;
    310   1.1       cgd 	}
    311   1.1       cgd 	for (i = 0; i < HSHSIZE; i++) {
    312   1.1       cgd 		hp = hashtab[i];
    313   1.1       cgd 		while (hp != NULL) {
    314   1.1       cgd 			fprintf(acctf, "%7.2f\t%s\t%d\n", hp->h_feetpages,
    315   1.1       cgd 			    hp->h_name, hp->h_count);
    316   1.1       cgd 			hp = hp->h_link;
    317   1.1       cgd 		}
    318   1.1       cgd 	}
    319   1.1       cgd 	fflush(acctf);
    320   1.1       cgd 	if (ferror(acctf)) {
    321  1.10       mrg 		warn("%s", sumfile);
    322   1.1       cgd 		errs++;
    323   1.1       cgd 	}
    324   1.1       cgd 	fclose(acctf);
    325   1.1       cgd 	if ((acctf = fopen(acctfile, "w")) == NULL)
    326  1.10       mrg 		warn("%s", acctfile);
    327   1.1       cgd 	else
    328   1.1       cgd 		fclose(acctf);
    329   1.1       cgd }
    330   1.1       cgd 
    331   1.1       cgd /*
    332   1.1       cgd  * Hashing routines.
    333   1.1       cgd  */
    334   1.1       cgd 
    335   1.1       cgd /*
    336   1.1       cgd  * Enter the name into the hash table and return the pointer allocated.
    337   1.1       cgd  */
    338   1.1       cgd 
    339   1.3       cgd static struct hent *
    340   1.1       cgd enter(name)
    341  1.11  jdolecek 	const char *name;
    342   1.1       cgd {
    343  1.10       mrg 	struct hent *hp;
    344  1.10       mrg 	int h;
    345   1.1       cgd 
    346   1.3       cgd 	if ((hp = lookup(name)) != NULL)
    347   1.1       cgd 		return(hp);
    348   1.1       cgd 	h = hash(name);
    349   1.1       cgd 	hcount++;
    350   1.1       cgd 	hp = (struct hent *) calloc(sizeof *hp, 1);
    351  1.10       mrg 	if (hp == NULL)
    352  1.10       mrg 		err(1, "calloc");
    353   1.8       mrg 	hp->h_name = strdup(name);
    354  1.10       mrg 	if (hp->h_name == NULL)
    355  1.10       mrg 		err(1, "malloc");
    356   1.1       cgd 	hp->h_feetpages = 0.0;
    357   1.1       cgd 	hp->h_count = 0;
    358   1.1       cgd 	hp->h_link = hashtab[h];
    359   1.1       cgd 	hashtab[h] = hp;
    360   1.1       cgd 	return(hp);
    361   1.1       cgd }
    362   1.1       cgd 
    363   1.1       cgd /*
    364   1.1       cgd  * Lookup a name in the hash table and return a pointer
    365   1.1       cgd  * to it.
    366   1.1       cgd  */
    367   1.1       cgd 
    368   1.3       cgd static struct hent *
    369   1.1       cgd lookup(name)
    370  1.11  jdolecek 	const char *name;
    371   1.1       cgd {
    372  1.10       mrg 	int h;
    373  1.10       mrg 	struct hent *hp;
    374   1.1       cgd 
    375   1.1       cgd 	h = hash(name);
    376   1.3       cgd 	for (hp = hashtab[h]; hp != NULL; hp = hp->h_link)
    377   1.1       cgd 		if (strcmp(hp->h_name, name) == 0)
    378   1.1       cgd 			return(hp);
    379   1.3       cgd 	return(NULL);
    380   1.1       cgd }
    381   1.1       cgd 
    382   1.1       cgd /*
    383   1.1       cgd  * Hash the passed name and return the index in
    384   1.1       cgd  * the hash table to begin the search.
    385   1.1       cgd  */
    386   1.3       cgd static int
    387   1.1       cgd hash(name)
    388  1.11  jdolecek 	const char *name;
    389   1.1       cgd {
    390  1.10       mrg 	int h;
    391  1.11  jdolecek 	const char *cp;
    392   1.1       cgd 
    393   1.1       cgd 	for (cp = name, h = 0; *cp; h = (h << 2) + *cp++)
    394   1.1       cgd 		;
    395   1.1       cgd 	return((h & 0x7fffffff) % HSHSIZE);
    396   1.1       cgd }
    397   1.1       cgd 
    398   1.1       cgd /*
    399   1.1       cgd  * The qsort comparison routine.
    400   1.1       cgd  * The comparison is ascii collating order
    401   1.1       cgd  * or by feet of typesetter film, according to sort.
    402   1.1       cgd  */
    403   1.3       cgd static int
    404   1.3       cgd qucmp(a, b)
    405   1.3       cgd 	const void *a, *b;
    406   1.1       cgd {
    407  1.10       mrg 	struct hent *h1, *h2;
    408  1.10       mrg 	int r;
    409   1.1       cgd 
    410   1.3       cgd 	h1 = *(struct hent **)a;
    411   1.3       cgd 	h2 = *(struct hent **)b;
    412   1.1       cgd 	if (sort)
    413   1.3       cgd 		r = h1->h_feetpages < h2->h_feetpages ?
    414   1.3       cgd 		    -1 : h1->h_feetpages > h2->h_feetpages;
    415   1.1       cgd 	else
    416   1.1       cgd 		r = strcmp(h1->h_name, h2->h_name);
    417   1.1       cgd 	return(reverse ? -r : r);
    418   1.1       cgd }
    419   1.1       cgd 
    420   1.1       cgd /*
    421   1.1       cgd  * Perform lookup for printer name or abbreviation --
    422   1.1       cgd  */
    423   1.3       cgd static int
    424   1.1       cgd chkprinter(s)
    425  1.11  jdolecek 	const char *s;
    426   1.1       cgd {
    427   1.1       cgd 	int stat;
    428   1.1       cgd 
    429   1.3       cgd 	if ((stat = cgetent(&bp, printcapdb, s)) == -2) {
    430   1.1       cgd 		printf("pac: can't open printer description file\n");
    431   1.1       cgd 		exit(3);
    432   1.3       cgd 	} else if (stat == -1)
    433   1.1       cgd 		return(0);
    434   1.3       cgd 	else if (stat == -3)
    435   1.3       cgd 		fatal("potential reference loop detected in printcap file");
    436   1.3       cgd 
    437   1.3       cgd 	if (cgetstr(bp, "af", &acctfile) == -1) {
    438   1.1       cgd 		printf("accounting not enabled for printer %s\n", printer);
    439   1.1       cgd 		exit(2);
    440   1.1       cgd 	}
    441   1.3       cgd 	if (!pflag && (cgetnum(bp, "pc", &price100) == 0))
    442   1.1       cgd 		price = price100/10000.0;
    443   1.1       cgd 	sumfile = (char *) calloc(sizeof(char), strlen(acctfile)+5);
    444  1.10       mrg 	if (sumfile == NULL)
    445  1.10       mrg 		err(1, "pac");
    446   1.8       mrg 	strcpy(sumfile, acctfile);	/* XXX: strcpy is safe */
    447   1.8       mrg 	strcat(sumfile, "_sum");	/* XXX: strcat is safe */
    448   1.1       cgd 	return(1);
    449  1.10       mrg }
    450  1.10       mrg 
    451  1.10       mrg static void
    452  1.10       mrg usage()
    453  1.10       mrg {
    454  1.10       mrg 	fprintf(stderr,
    455  1.11  jdolecek 	  "usage: pac [-Pprinter] [-pprice] [-s] [-c] [-r] [-m] [user ...]\n");
    456  1.11  jdolecek 	exit(1);
    457   1.1       cgd }
    458