]> andersk Git - splint.git/blame - src/Headers/lclPredicateNode.h
Updating to use the LEnsures and LRequires instead of the ensures requires so
[splint.git] / src / Headers / lclPredicateNode.h
CommitLineData
885824d3 1/*
2** Copyright (C) University of Virginia, Massachusetts Institue of Technology 1994-2000.
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
13typedef struct _lclPredicateNode {
14 ltoken tok; /* for debugging */
15 lclPredicateKind kind;
16 struct _termNode *predicate;
17} *lclPredicateNode;
18
19
This page took 0.172278 seconds and 5 git commands to generate.