/* mine.h */

/* 
 * $Header: /var/lib/cvsd/repos/CSRG/43BSDReno/contrib/isode-beta/pepsy/mine.h,v 1.1.1.1 2018/04/24 16:12:56 root Exp $
 *
 *
 * $Log: mine.h,v $
 * Revision 1.1.1.1  2018/04/24 16:12:56  root
 * BSD 4.3reno
 *
 * Revision 7.0  90/07/01  19:54:42  mrose
 * *** empty log message ***
 * 
 */

/*
 *				  NOTICE
 *
 *    Acquisition, use, and distribution of this module and related
 *    materials are subject to the restrictions of a license agreement.
 *    Consult the Preface in the User's Manual for the full terms of
 *    this agreement.
 *
 */


#define TABLESIZE 29

typedef struct ID_TABLE {
	char	*h_value;
	char	*r_value;
	int	def_bit;
	int	def_value;
	int	count;
	struct ID_TABLE	*next;
	} id_entry;

typedef struct S_TABLE {
	char	*name;
	char	*type;
	struct S_TABLE	*parent;
	char	*field;
	int	defined;
	struct S_TABLE *next;
	} s_table;

extern	id_entry	*id_table[];

extern	s_table	*head;
extern char *c_flags();
