xref: /original-bsd/usr.sbin/lpr/lpc/extern.h (revision 29d8ef23)
1 /*
2  * Copyright (c) 1989 The Regents of the University of California.
3  * All rights reserved.
4  *
5  *
6  * %sccs.include.redist.c%
7  *
8  *      @(#)extern.h	5.3 (Berkeley) 09/15/92
9  */
10 
11 
12 #include <sys/cdefs.h>
13 
14 
15 __BEGIN_DECLS
16 void	clean __P((int, char **));
17 void	disable __P((int, char **));
18 void	doabort __P((int, char **));
19 void	down __P((int, char **));
20 void	enable __P((int, char **));
21 void	help __P((int, char **));
22 void	quit __P((int, char **));
23 void	restart __P((int, char **));
24 void	start __P((int, char **));
25 void	status __P((int, char **));
26 void	stop __P((int, char **));
27 void	topq __P((int, char **));
28 void	up __P((int, char **));
29 __END_DECLS
30 
31 extern int NCMDS;
32 extern struct cmd cmdtab[];
33