122443Sdist /* 2*61843Sbostic * Copyright (c) 1983, 1993 3*61843Sbostic * The Regents of the University of California. All rights reserved. 422443Sdist * 542801Sbostic * %sccs.include.redist.c% 634203Sbostic * 7*61843Sbostic * @(#)lpc.h 8.1 (Berkeley) 06/06/93 822443Sdist */ 912381Sralph 1012381Sralph /* 1112381Sralph * Line printer control program. 1212381Sralph */ 1312381Sralph struct cmd { 1412381Sralph char *c_name; /* command name */ 1512381Sralph char *c_help; /* help message */ 1655472Sbostic /* routine to do the work */ 1755472Sbostic void (*c_handler) __P((int, char *[])); 1812381Sralph int c_priv; /* privileged command */ 1912381Sralph }; 20