]> andersk Git - splint.git/blame - src/Headers/mtValuesNode.h
Fixed all /*@i...@*/ tags (except 1).
[splint.git] / src / Headers / mtValuesNode.h
CommitLineData
28bf4b0b 1/*
c0de361f 2** Copyright (C) University of Virginia, Massachusetts Institue of Technology 1994-2003.
28bf4b0b 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
28bf4b0b 22extern /*@observer@*/ cstringList mtValuesNode_getValues (mtValuesNode p_node) /*@*/ ;
23# define mtValuesNode_getValues(node) ((node)->values)
24
25# else
26# error "Multiple include"
27# endif
This page took 0.072204 seconds and 5 git commands to generate.