]> andersk Git - splint.git/blame - src/Headers/forwardTypes.h
Added support for ISO C99 _Bool and stdbool bool/true/false. The
[splint.git] / src / Headers / forwardTypes.h
CommitLineData
885824d3 1# ifndef FORWARDTYPES_H
2# define FORWARDTYPES_H
3
885824d3 4# include "lclForwardTypes.h"
885824d3 5
28bf4b0b 6abst_typedef /*@null@*/ struct s_sRef *sRef;
7abst_typedef /*@null@*/ struct s_uentry *uentry;
cd7d9b17 8typedef struct s_hashNode *hashNode;
885824d3 9immut_typedef int typeIdSet;
10typedef /*@only@*/ uentry o_uentry;
28bf4b0b 11abst_typedef struct s_mttok *mttok;
12abst_typedef /*@null@*/ struct s_idDecl *idDecl;
13abst_typedef /*@null@*/ struct s_usymtab *usymtab;
14abst_typedef /*@null@*/ struct s_exprNode *exprNode;
15abst_typedef /*@null@*/ struct s_guardSet *guardSet;
16abst_typedef /*@null@*/ struct s_sRefSet *sRefSet;
17abst_typedef /*@null@*/ struct s_sRefList *sRefList ;
18abst_typedef /*@null@*/ struct s_aliasTable *aliasTable;
19abst_typedef /*@null@*/ struct s_fileloc *fileloc;
20abst_typedef /*@null@*/ struct s_cstringTable *cstringTable;
21abst_typedef /*@null@*/ struct s_genericTable *genericTable;
22abst_typedef /*@null@*/ struct s_annotationInfo *annotationInfo;
23abst_typedef /*@null@*/ struct s_inputStream *inputStream;
24abst_typedef /*@null@*/ struct s_stateValue *stateValue;
f9264521 25abst_typedef /*@null@*/ struct s_pointers *pointers;
28bf4b0b 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;
ccf0a4a8 33abst_typedef /*@null@*/ struct s_metaStateConstraintList *metaStateConstraintList ;
08eb3d0e 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
140c27a8 73abst_typedef /*@null@*/ struct s_ctypeList *ctypeList;
74abst_typedef /*@null@*/ ctypeList fileIdList;
4cccc6ad 75
bf92e32c 76/* DRL modified 9 26 00 */
77
140c27a8 78abst_typedef /*@null@*/ struct s_constraintExpr *constraintExpr;
a0a162cd 79
ccf0a4a8 80abst_typedef /*@untainted@*/ /*@null@*/ char *cstring;
885824d3 81typedef /*@only@*/ cstring o_cstring;
82
140c27a8 83abst_typedef /*@null@*/ struct s_cstringSList *cstringSList;
84
85typedef enum e_LSLInitRuleCode LSLInitRuleCode;
86
885824d3 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.086085 seconds and 5 git commands to generate.