www.pudn.com > ANSI_C_OOP.rar > parse.h


#ifndef	PARSE_H
#define	PARSE_H

/*
 *	symbols
 */

enum tokens {				/* must not clash with operators */
	NUMBER = 'n'			/* literal constant */
};

/*
 *	error recovery
 */

void error (const char * fmt, ...);

#endif