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