xref: /original-bsd/usr.sbin/lpr/lpc/lpc.h (revision c3e32dec)
1 /*
2  * Copyright (c) 1983, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)lpc.h	8.1 (Berkeley) 06/06/93
8  */
9 
10 /*
11  * Line printer control program.
12  */
13 struct	cmd {
14 	char	*c_name;		/* command name */
15 	char	*c_help;		/* help message */
16 					/* routine to do the work */
17 	void	(*c_handler) __P((int, char *[]));
18 	int	c_priv;			/* privileged command */
19 };
20