parse.h #1

  • //
  • guest/
  • laura_wingerd/
  • jam/
  • src/
  • parse.h
  • View
  • Commits
  • Open Download .zip Download (470 B)
/*
 * Copyright 1993, 1995 Christopher Seiwald.
 *
 * This file is part of Jam - see jam.c for Copyright information.
 */

/*
 * parse.h - make and destroy parse trees as driven by the parser
 */

/*
 * parse tree node
 */

typedef struct _PARSE PARSE;

struct _PARSE {
	void	(*func)();
	PARSE	*left;
	PARSE	*right;
	char	*string;
	char	*string1;
	LIST	*llist;
	LIST	*rlist;
	int	num;
} ;

void 	parse_file();
void 	parse_save();
PARSE	*parse_make();
void	parse_free();
# Change User Description Committed
#1 58 Laura Wingerd Branching jam @jam2.2.4
//guest/perforce_software/jam/src/parse.h
#1 2 laura Add Jam/MR 2.2 source