Added SCCS keywords.
[unix-history] / usr / src / usr.sbin / lpr / lpc / lpc.h
/*
* Copyright (c) 1983 Regents of the University of California.
* All rights reserved.
*
* %sccs.include.redist.c%
*
* @(#)lpc.h 5.5 (Berkeley) %G%
*/
/*
* Line printer control program.
*/
struct cmd {
char *c_name; /* command name */
char *c_help; /* help message */
/* routine to do the work */
void (*c_handler) __P((int, char *[]));
int c_priv; /* privileged command */
};