/*
 *
 *  (c) COPYRIGHT INRIA, 1996.
 *  Please first read the full copyright statement in file COPYRIGHT.
 *
 */
 
#ifndef _THOTLIB_CONSTGRM_H_
#define _THOTLIB_CONSTGRM_H_
/*
 * Constants for parsing and compiling languages S, P, T, and A
 */

#define LINE_LENGTH 132		/* max. length of an input line */
#define KEWWORD_LENGTH 20	/* max. length of a key word */
#define IDENTIFIER_LENGTH 60	/* max. length of an identifier */
#define MAX_KEYWORDS 250	/* max. number of key words */
#define MAX_KEYWORDS1 251	/* MAX_KEYWORDS + 1 */
#define MAX_IDENTIFIERS 1600	/* max. number of identifiers in a grammar */
#define MAX_IDENTIFIERS1 1601	/* MAX_IDENTIFIERS +1 */
#define MAX_RULES 180		/* max. number of syntactic rules in a
				   grammar */
#define RULE_LENGTH 120		/* max. length of a syntactic rule */

#endif /* _THOTLIB_CONSTGRM_H_ */

