1987-03-09 21:20:21 +00:00
|
|
|
/*
|
|
|
|
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
|
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
|
|
*/
|
1984-11-29 14:22:02 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
/* $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;
|
|
|
|
|
1985-01-21 23:57:44 +00:00
|
|
|
String *_newstr() ;
|
|
|
|
|
1984-11-29 14:22:02 +00:00
|
|
|
#define MAXSTRING 1024
|