xref: /original-bsd/games/boggle/boggle/extern.h (revision 431be598)
1 /*-
2  * Copyright (c) 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)extern.h	8.1 (Berkeley) 06/11/93
8  */
9 
10 void	 addword __P((char *));
11 void	 badword __P((void));
12 char	*batchword __P((FILE *));
13 void	 checkdict __P((void));
14 int	 checkword __P((char *, int, int *));
15 void	 cleanup __P((void));
16 void	 delay __P((int));
17 long	 dictseek __P((FILE *, long, int));
18 void	 findword __P((void));
19 void	 flushin __P((FILE *));
20 char	*getline __P((char *));
21 void	 getword __P((char *));
22 int	 help __P((void));
23 int	 inputch __P((void));
24 int	 loaddict __P((FILE *));
25 int	 loadindex __P((char *));
26 void	 newgame __P((char *));
27 char	*nextword __P((FILE *));
28 FILE	*opendict __P((char *));
29 void	 playgame __P((void));
30 void	 prompt __P((char *));
31 void	 prtable __P((char *[],
32 	    int, int, int, void (*)(char *[], int), int (*)(char *[], int)));
33 void	 putstr __P((char *));
34 void	 redraw __P((void));
35 void	 results __P((void));
36 int	 setup __P((int, long));
37 void	 showboard __P((char *));
38 void	 showstr __P((char *, int));
39 void	 showword __P((int));
40 void	 starttime __P((void));
41 void	 startwords __P((void));
42 void	 stoptime __P((void));
43 int	 timerch __P((void));
44 void	 usage __P((void));
45 int	 validword __P((char *));
46