]> andersk Git - splint.git/blame - src/Headers/varNode.h
Merged code tree with Dave Evans's version. Many changes to numberous to list....
[splint.git] / src / Headers / varNode.h
CommitLineData
885824d3 1/*
28bf4b0b 2** Copyright (C) University of Virginia, Massachusetts Institue of Technology 1994-2001.
885824d3 3** See ../LICENSE for license information.
4*/
5
6# ifndef VARNODE_H
7# define VARNODE_H
8
28bf4b0b 9typedef struct { /* with sort, useful in quantified */
885824d3 10 ltoken varid;
11 bool isObj;
12 lclTypeSpecNode type;
13 sort sort;
14} *varNode;
15
16extern varNode varNode_copy (varNode p_x);
17extern void varNode_free (/*@only@*/ /*@null@*/ varNode p_x);
18
19# else
20# error "Multiple include"
21# endif
This page took 0.052614 seconds and 5 git commands to generate.