xref: /original-bsd/usr.sbin/lpr/lpc/lpc.h (revision e59fb703)
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.4 (Berkeley) 06/01/90
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 	int	(*c_handler)();		/* routine to do the work */
17 	int	c_priv;			/* privileged command */
18 };
19