Pristine Ack-5.5
[Ack-5.5.git] / lang / cem / cemcom / code.str
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 /* $Id: code.str,v 3.7 1994/06/24 12:02:43 ceriel Exp $ */
6 /*      C O D E - G E N E R A T O R   D E F I N I T I O N S     */
7
8 struct string_cst       {       /* storing string constants */
9         struct string_cst *next;
10         char *sc_value;
11         int sc_len;
12         label sc_dlb;
13 };
14
15 extern struct string_cst *str_list;
16
17 /* ALLOCDEF "string_cst" 10 */
18
19 #define LVAL    0
20 #define RVAL    1
21 #define FALSE   0
22 #define TRUE    1