]> andersk Git - splint.git/blame_incremental - src/Headers/lclPredicateNode.h
*** empty log message ***
[splint.git] / src / Headers / lclPredicateNode.h
... / ...
CommitLineData
1/*
2** Copyright (C) University of Virginia, Massachusetts Institue of Technology 1994-2001.
3** See ../LICENSE for license information.
4**
5*/
6
7typedef enum
8{
9 LPD_PLAIN, LPD_CHECKS, LPD_REQUIRES, LPD_ENSURES,
10 LPD_INTRACLAIM, LPD_CONSTRAINT, LPD_INITIALLY
11} lclPredicateKind;
12
13struct s_lclPredicateNode {
14 ltoken tok; /* for debugging */
15 lclPredicateKind kind;
16 termNode predicate;
17} ;
18
19
This page took 0.187679 seconds and 5 git commands to generate.