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 7 #ifndef lint 8 static char sccsid[] = "@(#)cmdtab.c 5.1 (Berkeley) 06/06/85"; 9 #endif not lint 10 11 /* 12 * lpc -- command tables 13 */ 14 15 #include "lpc.h" 16 17 int abort(), clean(), enable(), disable(), down(), help(); 18 int quit(), restart(), start(), status(), stop(), topq(), up(); 19 20 char aborthelp[] = "terminate a spooling daemon immediately and disable printing"; 21 char cleanhelp[] = "remove cruft files from a queue"; 22 char enablehelp[] = "turn a spooling queue on"; 23 char disablehelp[] = "turn a spooling queue off"; 24 char downhelp[] = "do a 'stop' followed by 'disable' and put a message in status"; 25 char helphelp[] = "get help on commands"; 26 char quithelp[] = "exit lpc"; 27 char restarthelp[] = "kill (if possible) and restart a spooling daemon"; 28 char starthelp[] = "enable printing and start a spooling daemon"; 29 char statushelp[] = "show status of daemon and queue"; 30 char stophelp[] = "stop a spooling daemon after current job completes and disable printing"; 31 char topqhelp[] = "put job at top of printer queue"; 32 char uphelp[] = "enable everything and restart spooling daemon"; 33 34 struct cmd cmdtab[] = { 35 { "abort", aborthelp, abort, 1 }, 36 { "clean", cleanhelp, clean, 1 }, 37 { "enable", enablehelp, enable, 1 }, 38 { "exit", quithelp, quit, 0 }, 39 { "disable", disablehelp, disable, 1 }, 40 { "down", downhelp, down, 1 }, 41 { "help", helphelp, help, 0 }, 42 { "quit", quithelp, quit, 0 }, 43 { "restart", restarthelp, restart, 0 }, 44 { "start", starthelp, start, 1 }, 45 { "status", statushelp, status, 0 }, 46 { "stop", stophelp, stop, 1 }, 47 { "topq", topqhelp, topq, 1 }, 48 { "up", uphelp, up, 1 }, 49 { "?", helphelp, help, 0 }, 50 { 0 }, 51 }; 52 53 int NCMDS = sizeof (cmdtab) / sizeof (cmdtab[0]); 54