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) 6/6/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: };
Defined struct's
cmd
defined in line
12; used 26 times
Usage of this include