code.str 490 B

12345678910111213141516171819202122
  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$ */
  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. struct string_cst { /* storing string constants */
  8. struct string_cst *next;
  9. char *sc_value;
  10. int sc_len;
  11. label sc_dlb;
  12. };
  13. extern struct string_cst *str_list;
  14. /* ALLOCDEF "string_cst" 10 */
  15. #define LVAL 0
  16. #define RVAL 1
  17. #define FALSE 0
  18. #define TRUE 1