]> andersk Git - splint.git/blame - src/Headers/forwardTypes.h
Added splint.spec file contributed by Heiko Abraham
[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;
ccf0a4a8 34abst_typedef /*@null@*/ struct s_metaStateConstraintList *metaStateConstraintList ;
08eb3d0e 35abst_typedef struct s_metaStateSpecifier *metaStateSpecifier;
36abst_typedef /*@null@*/ struct s_metaStateExpression *metaStateExpression;
28bf4b0b 37
38abst_typedef /*@null@*/ struct s_functionClause *functionClause;
39abst_typedef /*@null@*/ struct s_functionClauseList *functionClauseList;
40
41abst_typedef struct s_globalsClause *globalsClause;
42abst_typedef struct s_modifiesClause *modifiesClause;
43abst_typedef /*@null@*/ struct s_warnClause *warnClause;
44abst_typedef struct s_stateClause *stateClause;
45
46abst_typedef /*@null@*/ struct s_stateClauseList *stateClauseList;
47
48/* The mt grammar nodes: */
49abst_typedef struct s_mtDeclarationNode *mtDeclarationNode;
50abst_typedef /*@null@*/ struct s_mtDeclarationPiece *mtDeclarationPiece;
51abst_typedef /*@null@*/ struct s_mtDeclarationPieces *mtDeclarationPieces;
52abst_typedef /*@null@*/ struct s_mtContextNode *mtContextNode;
53abst_typedef struct s_mtValuesNode *mtValuesNode;
54abst_typedef struct s_mtDefaultsNode *mtDefaultsNode;
55abst_typedef /*@null@*/ struct s_mtDefaultsDeclList *mtDefaultsDeclList;
56abst_typedef struct s_mtDefaultsDecl *mtDefaultsDecl;
57abst_typedef struct s_mtAnnotationsNode *mtAnnotationsNode;
58abst_typedef /*@null@*/ struct s_mtAnnotationList *mtAnnotationList;
59abst_typedef struct s_mtAnnotationDecl *mtAnnotationDecl;
60abst_typedef struct s_mtMergeNode *mtMergeNode;
61abst_typedef struct s_mtMergeItem *mtMergeItem;
62abst_typedef /*@null@*/ struct s_mtMergeClauseList *mtMergeClauseList;
63abst_typedef struct s_mtMergeClause *mtMergeClause;
64abst_typedef /*@null@*/ struct s_mtTransferClauseList *mtTransferClauseList;
65abst_typedef struct s_mtTransferClause *mtTransferClause;
66abst_typedef /*@null@*/ struct s_mtLoseReferenceList *mtLoseReferenceList;
67abst_typedef struct s_mtLoseReference *mtLoseReference;
68abst_typedef struct s_mtTransferAction *mtTransferAction;
69abst_typedef sRefSet globSet;
70
60eced23 71abst_typedef /*@null@*/ struct s_constraint *constraint;
72abst_typedef /*@null@*/ struct s_constraintList *constraintList;
93307a76 73
4cccc6ad 74
bf92e32c 75/* DRL modified 9 26 00 */
76
28bf4b0b 77abst_typedef /*@null@*/ struct s_constraintExpr * constraintExpr;
a8e557d3 78
79
a0a162cd 80
885824d3 81/*@-cppnames@*/
82typedef int bool;
83/*@=cppnames@*/
84
ccf0a4a8 85abst_typedef /*@untainted@*/ /*@null@*/ char *cstring;
885824d3 86typedef /*@only@*/ cstring o_cstring;
87
88immut_typedef int ctype;
89
90/* sRef -> bool */
91typedef bool (*sRefTest) (sRef);
92
28bf4b0b 93/* sRef, fileloc -> void; modifies sRef */
885824d3 94typedef void (*sRefMod) (sRef, fileloc);
95
28bf4b0b 96/* sRef, int, fileloc -> void; modifies sRef */
97typedef void (*sRefModVal) (sRef, int, fileloc);
98
885824d3 99/* sRef -> void */
100typedef void (*sRefShower) (sRef);
101
102# else
103# error "Multiple include"
104# endif
105
106
107
108
This page took 0.130525 seconds and 5 git commands to generate.