xref: /original-bsd/usr.sbin/lpr/lpc/lpc.h (revision 3708840b)
1 /*	lpc.h (Berkeley) 05/11/83	*/
2 
3 /*
4  * Line printer control program.
5  */
6 struct	cmd {
7 	char	*c_name;		/* command name */
8 	char	*c_help;		/* help message */
9 	int	(*c_handler)();		/* routine to do the work */
10 	int	c_priv;			/* privileged command */
11 };
12