Pristine Ack-5.5
[Ack-5.5.git] / h / bc_string.h
1 /*
2  * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
3  * See the copyright notice in the ACK home directory, in the file "Copyright".
4  */
5 #
6
7 /* $Id: bc_string.h,v 2.4 1994/06/24 10:07:57 ceriel Exp $ */
8
9 /* Strings are allocated in a fixed string descriptor table 
10 ** This mechanism is used to avoid string copying as much as possible
11 */
12
13 typedef struct{
14         char    *strval;
15         int     strcount;
16         int     strlength;
17         } String;
18
19 String *_newstr() ;
20
21 #define MAXSTRING 1024