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