15 lines
		
	
	
	
		
			251 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			251 B
		
	
	
	
		
			C
		
	
	
	
	
	
#
 | 
						|
 | 
						|
/* $Header$ */
 | 
						|
 | 
						|
/* Strings are allocated in a fixed string descriptor table 
 | 
						|
** This mechanism is used to avoid string copying as much as possible
 | 
						|
*/
 | 
						|
 | 
						|
typedef struct{
 | 
						|
	char	*strval;
 | 
						|
	int	strcount;
 | 
						|
	int	strlength;
 | 
						|
	} String;
 | 
						|
 | 
						|
#define MAXSTRING 1024
 |