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