xref: /original-bsd/usr.sbin/lpr/lpc/lpc.h (revision 43bfbc1c)
1 /*
2  * Copyright (c) 1983 Regents of the University of California.
3  * All rights reserved.  The Berkeley software License Agreement
4  * specifies the terms and conditions for redistribution.
5  *
6  *	@(#)lpc.h	5.1 (Berkeley) 06/06/85
7  */
8 
9 /*
10  * Line printer control program.
11  */
12 struct	cmd {
13 	char	*c_name;		/* command name */
14 	char	*c_help;		/* help message */
15 	int	(*c_handler)();		/* routine to do the work */
16 	int	c_priv;			/* privileged command */
17 };
18