]> andersk Git - splint.git/blame - src/Headers/mtValuesNode.h
Updated the copyright on source code files.
[splint.git] / src / Headers / mtValuesNode.h
CommitLineData
28bf4b0b 1/*
2** Copyright (C) University of Virginia, Massachusetts Institue of Technology 1994-2001.
3** See ../LICENSE for license information.
4**
5*/
6/*
7** mtValuesNode.h
8*/
9
10# ifndef MTVALUESNODE_H
11# define MTVALUESNODE_H
12
13struct s_mtValuesNode {
14 cstringList values;
15} ;
16
17extern mtValuesNode mtValuesNode_create (/*@only@*/ cstringList p_values) /*@*/ ;
18extern void mtValuesNode_free (/*@only@*/ mtValuesNode) ;
19
20extern cstring mtValuesNode_unparse (mtValuesNode p_node) /*@*/ ;
21
22/*@i32 why no warning without observer!??*/
23extern /*@observer@*/ cstringList mtValuesNode_getValues (mtValuesNode p_node) /*@*/ ;
24# define mtValuesNode_getValues(node) ((node)->values)
25
26# else
27# error "Multiple include"
28# endif
This page took 0.089735 seconds and 5 git commands to generate.