xref: /original-bsd/usr.sbin/lpr/lpc/lpc.h (revision 0a8f3039)
1 /*
2  * Copyright (c) 1983 Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)lpc.h	5.5 (Berkeley) 07/21/92
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