122443Sdist /* 222443Sdist * Copyright (c) 1983 Regents of the University of California. 334203Sbostic * All rights reserved. 422443Sdist * 5*42801Sbostic * %sccs.include.redist.c% 634203Sbostic * 7*42801Sbostic * @(#)lpc.h 5.4 (Berkeley) 06/01/90 822443Sdist */ 912381Sralph 1012381Sralph /* 1112381Sralph * Line printer control program. 1212381Sralph */ 1312381Sralph struct cmd { 1412381Sralph char *c_name; /* command name */ 1512381Sralph char *c_help; /* help message */ 1612381Sralph int (*c_handler)(); /* routine to do the work */ 1712381Sralph int c_priv; /* privileged command */ 1812381Sralph }; 19