1*22443Sdist /* 2*22443Sdist * Copyright (c) 1983 Regents of the University of California. 3*22443Sdist * All rights reserved. The Berkeley software License Agreement 4*22443Sdist * specifies the terms and conditions for redistribution. 5*22443Sdist * 6*22443Sdist * @(#)lpc.h 5.1 (Berkeley) 06/06/85 7*22443Sdist */ 812381Sralph 912381Sralph /* 1012381Sralph * Line printer control program. 1112381Sralph */ 1212381Sralph struct cmd { 1312381Sralph char *c_name; /* command name */ 1412381Sralph char *c_help; /* help message */ 1512381Sralph int (*c_handler)(); /* routine to do the work */ 1612381Sralph int c_priv; /* privileged command */ 1712381Sralph }; 18