]> andersk Git - splint.git/blame - src/Headers/mtDefaultsNode.h
Updated copyrights
[splint.git] / src / Headers / mtDefaultsNode.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** mtDefaultsNode.h
8*/
9
10# ifndef MTDEFAULTSNODE_H
11# define MTDEFAULTSNODE_H
12
13struct s_mtDefaultsNode {
14 mtDefaultsDeclList decls;
15 fileloc loc;
16} ;
17
18extern mtDefaultsNode mtDefaultsNode_create (/*@only@*/ mttok,
19 /*@only@*/ mtDefaultsDeclList) /*@*/ ;
20
21extern void mtDefaultsNode_free (/*@only@*/ mtDefaultsNode) ;
22
23extern /*@observer@*/ mtDefaultsDeclList mtDefaultsNode_getDecls (mtDefaultsNode) /*@*/ ;
24# define mtDefaultsNode_getDecls(n) ((n)->decls)
25
26extern cstring mtDefaultsNode_unparse (mtDefaultsNode p_node) /*@*/ ;
27
28# else
29# error "Multiple include"
30# endif
This page took 0.061269 seconds and 5 git commands to generate.