122443Sdist /* 222443Sdist * Copyright (c) 1983 Regents of the University of California. 334203Sbostic * All rights reserved. 422443Sdist * 542801Sbostic * %sccs.include.redist.c% 634203Sbostic * 7*55472Sbostic * @(#)lpc.h 5.5 (Berkeley) 07/21/92 822443Sdist */ 912381Sralph 1012381Sralph /* 1112381Sralph * Line printer control program. 1212381Sralph */ 1312381Sralph struct cmd { 1412381Sralph char *c_name; /* command name */ 1512381Sralph char *c_help; /* help message */ 16*55472Sbostic /* routine to do the work */ 17*55472Sbostic void (*c_handler) __P((int, char *[])); 1812381Sralph int c_priv; /* privileged command */ 1912381Sralph }; 20