decspecs.str 748 B

123456789101112131415161718192021
  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. /* $Header$ */
  6. /* DECLARATION SPECIFIER DEFINITION */
  7. struct decspecs {
  8. struct decspecs *next;
  9. struct type *ds_type; /* single type */
  10. int ds_notypegiven; /* set if type not given explicitly */
  11. int ds_typedef; /* 1 if type was a user typedef */
  12. int ds_sc_given; /* 1 if the st. class is explicitly given */
  13. int ds_sc; /* storage class, given or implied */
  14. int ds_size; /* LONG, SHORT or 0 */
  15. int ds_unsigned; /* SIGNED, UNSIGNED or 0 */
  16. int ds_typequal; /* type qualifiers - see type.str */
  17. };
  18. extern struct type *qualifier_type();
  19. extern struct decspecs null_decspecs;