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