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