 /*
 |  Data structures used by the parse code
*/

#ifndef _HAVE_PARSE_H_
#define _HAVE_PARSE_H_

typedef struct variable
{
	char	*name;
	char	*exp;
	struct variable	*next;
} variable;

int parseCheckIsWhite();
void parseSeparate();
variable *parseFindName();
variable *parseAddName();

#endif

