71 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			71 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
| !File: pathlength.h
 | |
| #define PATHLENGTH	1024	/* max. length of path to file		*/
 | |
| 
 | |
| 
 | |
| !File: errout.h
 | |
| #define	ERROUT		STDERR	/* file pointer for writing messages	*/
 | |
| #define	MAXERR_LINE	5	/* maximum number of error messages given
 | |
| 					on the same input line.		*/
 | |
| 
 | |
| 
 | |
| !File: idfsize.h
 | |
| #define	IDFSIZE	64	/* maximum significant length of an identifier	*/
 | |
| 
 | |
| 
 | |
| !File: numsize.h
 | |
| #define	NUMSIZE	256	/* maximum length of a numeric constant		*/
 | |
| 
 | |
| 
 | |
| !File: nparams.h
 | |
| #define	NPARAMS 32	/* maximum number of parameters of macros	*/
 | |
| 
 | |
| 
 | |
| !File: ifdepth.h
 | |
| #define	IFDEPTH	256	/* maximum number of nested if-constructions	*/
 | |
| 
 | |
| 
 | |
| !File: lapbuf.h
 | |
| #define	LAPBUF	4096	/* size of macro actual parameter buffer	*/
 | |
| 
 | |
| 
 | |
| !File: strsize.h
 | |
| #define ISTRSIZE	16	/* minimum number of bytes allocated for
 | |
| 					storing a string		*/
 | |
| 
 | |
| 
 | |
| !File: botch_free.h
 | |
| /*#define BOTCH_FREE	1	/* botch freed memory, as a check	*/
 | |
| 
 | |
| 
 | |
| !File: debug.h
 | |
| /*#define DEBUG		1	/* perform various self-tests		*/
 | |
| 
 | |
| 
 | |
| !File: parbufsize.h
 | |
| #define PARBUFSIZE	1024
 | |
| 
 | |
| 
 | |
| !File: textsize.h
 | |
| #define ITEXTSIZE	16	/* 1st piece of memory for repl. text	*/
 | |
| 
 | |
| 
 | |
| !File: inputtype.h
 | |
| /*#define INP_READ_IN_ONE	1	/* read input file in one.  */
 | |
| 				/* If defined, we cannot read from a pipe */
 | |
| 
 | |
| 
 | |
| !File: obufsize.h
 | |
| #define OBUFSIZE	8192	/* output buffer size */
 | |
| 
 | |
| 
 | |
| !File: dobits.h
 | |
| #define DOBITS		1	/* use trick to reduce symboltable accesses */
 | |
| 
 | |
| 
 | |
| !File: line_prefix.h
 | |
| #define LINE_PREFIX	"#"	/* prefix for generated line directives,
 | |
| 				   either "#" or "#line"
 | |
| 				*/
 | |
| 
 | |
| 
 | |
| 
 |