1987-03-25 23:14:43 +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".
|
|
|
|
*/
|
1994-06-24 14:02:31 +00:00
|
|
|
/* $Id$ */
|
1986-03-10 13:07:55 +00:00
|
|
|
/* C O D E - G E N E R A T O R D E F I N I T I O N S */
|
|
|
|
|
1986-04-02 08:37:17 +00:00
|
|
|
struct string_cst { /* storing string constants */
|
|
|
|
struct string_cst *next;
|
|
|
|
char *sc_value;
|
|
|
|
int sc_len;
|
|
|
|
label sc_dlb;
|
|
|
|
};
|
|
|
|
|
1988-11-03 13:20:27 +00:00
|
|
|
extern struct string_cst *str_list;
|
|
|
|
|
1987-01-24 00:25:56 +00:00
|
|
|
/* ALLOCDEF "string_cst" 10 */
|
1986-04-02 08:37:17 +00:00
|
|
|
|
1986-03-10 13:07:55 +00:00
|
|
|
#define LVAL 0
|
|
|
|
#define RVAL 1
|
|
|
|
#define FALSE 0
|
|
|
|
#define TRUE 1
|