Pristine Ack-5.5
[Ack-5.5.git] / lang / cem / cemcom.ansi / decspecs.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 /* $Id: decspecs.h,v 1.2 1994/06/27 07:59:15 ceriel Exp $ */
6 /* DECLARATION SPECIFIER DEFINITION */
7
8 struct decspecs {
9         struct decspecs *next;
10         struct type *ds_type;   /* single type */
11         int ds_notypegiven;     /* set if type not given explicitly */
12         int ds_typedef;         /* 1 if type was a user typedef */
13         int ds_sc_given;        /* 1 if the st. class is explicitly given */
14         int ds_sc;              /* storage class, given or implied */
15         int ds_size;            /* LONG, SHORT or 0 */
16         int ds_unsigned;        /* SIGNED, UNSIGNED or 0 */
17         int ds_typequal;        /* type qualifiers - see type.str */
18 };
19
20 extern struct type *qualifier_type();
21 extern struct decspecs null_decspecs;