ack/h/bc_string.h
1985-01-21 23:57:44 +00:00

18 lines
272 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;
String *_newstr() ;
#define MAXSTRING 1024