CMPT 212 parse.h
David Simpson (simpson@cs.sfu.ca)
Thu, 22 Jan 1998 02:49:41 -0800 (PST)
//
// NAME
// parse.h
//
// DESCRIPTION
// This file contains the type definitions and function prototypes
// exported by the Parse module.
//
#ifndef _parse_h_
#define _parse_h_
//
// Include files.
//
#include "eval.h"
//
// NAME
// parse
//
// DESCRIPTION
// This function parses a character string into an expression.
//
// PARAMETERS
// str (in) - character string to parse.
//
// RETURNS
// pointer to an expression.
//
expr * parse(const char * str);
#endif