xref: /original-bsd/games/trek/getpar.h (revision f43fc9d7)
1 /*
2  * Copyright (c) 1980 Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)getpar.h	5.4 (Berkeley) 06/01/90
8  */
9 
10 struct cvntab		/* used for getcodpar() paramater list */
11 {
12 	char	*abrev;
13 	char	*full;
14 	int	(*value)();
15 	int	value2;
16 };
17 
18 extern double		getfltpar();
19 extern struct cvntab	*getcodpar();
20