21 lines
		
	
	
	
		
			436 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			436 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
 | 
						|
 * See the copyright notice in the ACK home directory, in the file "Copyright".
 | 
						|
 */
 | 
						|
#
 | 
						|
 | 
						|
/* $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;
 | 
						|
 | 
						|
String *_newstr() ;
 | 
						|
 | 
						|
#define MAXSTRING 1024
 |