]> andersk Git - splint.git/blob - src/Headers/forwardTypes.h
583ef5f87794dde98b842510270480b515093c52
[splint.git] / src / Headers / forwardTypes.h
1 # ifndef FORWARDTYPES_H
2 # define FORWARDTYPES_H
3
4 # ifndef NOLCL
5 # include "lclForwardTypes.h"
6 # endif
7
8 abst_typedef /*@null@*/ struct s_sRef *sRef;
9 abst_typedef /*@null@*/ struct s_uentry *uentry;
10 immut_typedef int typeIdSet;
11 typedef /*@only@*/ uentry o_uentry;
12 abst_typedef struct s_mttok *mttok;
13 abst_typedef /*@null@*/ struct s_idDecl *idDecl;
14 abst_typedef /*@null@*/ struct s_usymtab  *usymtab;
15 abst_typedef /*@null@*/ struct s_exprNode *exprNode;
16 abst_typedef /*@null@*/ struct s_guardSet *guardSet;
17 abst_typedef /*@null@*/ struct s_sRefSet *sRefSet;
18 abst_typedef /*@null@*/ struct s_sRefList *sRefList ;
19 abst_typedef /*@null@*/ struct s_aliasTable *aliasTable;
20 abst_typedef /*@null@*/ struct s_fileloc *fileloc;
21 abst_typedef /*@null@*/ struct s_cstringTable *cstringTable;
22 abst_typedef /*@null@*/ struct s_genericTable *genericTable;
23 abst_typedef /*@null@*/ struct s_annotationInfo *annotationInfo;
24 abst_typedef /*@null@*/ struct s_inputStream *inputStream;
25 abst_typedef /*@null@*/ struct s_stateValue *stateValue;
26 abst_typedef /*@null@*/ genericTable valueTable;
27 abst_typedef /*@null@*/ genericTable metaStateTable;
28 abst_typedef /*@null@*/ genericTable annotationTable;
29 abst_typedef /*@null@*/ struct s_metaStateInfo *metaStateInfo;
30 abst_typedef struct s_metaStateConstraint *metaStateConstraint;
31 abst_typedef struct s_metaStateSpecifier *metaStateSpecifier;
32 abst_typedef /*@null@*/ struct s_metaStateExpression *metaStateExpression;
33
34 abst_typedef /*@null@*/ struct s_functionClause *functionClause;
35 abst_typedef /*@null@*/ struct s_functionClauseList *functionClauseList;
36
37 abst_typedef struct s_globalsClause *globalsClause;
38 abst_typedef struct s_modifiesClause *modifiesClause;
39 abst_typedef /*@null@*/ struct s_warnClause *warnClause;
40 abst_typedef struct s_stateClause *stateClause;
41
42 abst_typedef /*@null@*/ struct s_stateClauseList *stateClauseList;
43
44 /* The mt grammar nodes: */
45 abst_typedef struct s_mtDeclarationNode *mtDeclarationNode;
46 abst_typedef /*@null@*/ struct s_mtDeclarationPiece *mtDeclarationPiece;
47 abst_typedef /*@null@*/ struct s_mtDeclarationPieces *mtDeclarationPieces;
48 abst_typedef /*@null@*/ struct s_mtContextNode *mtContextNode;
49 abst_typedef struct s_mtValuesNode *mtValuesNode;
50 abst_typedef struct s_mtDefaultsNode *mtDefaultsNode;
51 abst_typedef /*@null@*/ struct s_mtDefaultsDeclList *mtDefaultsDeclList;
52 abst_typedef struct s_mtDefaultsDecl *mtDefaultsDecl;
53 abst_typedef struct s_mtAnnotationsNode *mtAnnotationsNode;
54 abst_typedef /*@null@*/ struct s_mtAnnotationList *mtAnnotationList;
55 abst_typedef struct s_mtAnnotationDecl *mtAnnotationDecl;
56 abst_typedef struct s_mtMergeNode *mtMergeNode;
57 abst_typedef struct s_mtMergeItem *mtMergeItem;
58 abst_typedef /*@null@*/ struct s_mtMergeClauseList *mtMergeClauseList;
59 abst_typedef struct s_mtMergeClause *mtMergeClause;
60 abst_typedef /*@null@*/ struct s_mtTransferClauseList *mtTransferClauseList;
61 abst_typedef struct s_mtTransferClause *mtTransferClause;
62 abst_typedef /*@null@*/ struct s_mtLoseReferenceList *mtLoseReferenceList;
63 abst_typedef struct s_mtLoseReference *mtLoseReference;
64 abst_typedef struct s_mtTransferAction *mtTransferAction;
65 abst_typedef sRefSet globSet;
66
67 abst_typedef /*@null@*/ struct s_constraint *constraint;
68 abst_typedef /*@null@*/ struct s_constraintList *constraintList;
69
70
71 /* DRL modified 9 26 00 */
72
73 abst_typedef /*@null@*/ struct s_constraintExpr * constraintExpr;
74
75
76
77 /*@-cppnames@*/
78 typedef int bool;
79 /*@=cppnames@*/
80
81 abst_typedef /*@null@*/ char *cstring;
82 typedef /*@only@*/ cstring o_cstring;
83
84 immut_typedef int ctype;
85
86 /* sRef -> bool */
87 typedef bool (*sRefTest) (sRef);
88
89 /* sRef, fileloc -> void; modifies sRef */
90 typedef void (*sRefMod) (sRef, fileloc);
91
92 /* sRef, int, fileloc -> void; modifies sRef */
93 typedef void (*sRefModVal) (sRef, int, fileloc);
94
95 /* sRef -> void */
96 typedef void (*sRefShower) (sRef);
97
98 # else
99 # error "Multiple include"
100 # endif
101
102
103
104
This page took 0.031611 seconds and 3 git commands to generate.