]> andersk Git - splint.git/blame - src/Headers/mtDefaultsDecl.h
Fixed some splintme errors from the previous code change.
[splint.git] / src / Headers / mtDefaultsDecl.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** mtDefaultsDecl.h
8*/
9
10# ifndef mtDefaultsDecl_H
11# define mtDefaultsDecl_H
12
13struct s_mtDefaultsDecl {
14 mtContextNode context;
15 cstring value;
16 fileloc loc;
17} ;
18
19extern cstring mtDefaultsDecl_unparse (mtDefaultsDecl p_node) /*@*/ ;
20
21extern mtDefaultsDecl
22mtDefaultsDecl_create (/*@only@*/ mtContextNode p_context,
23 /*@only@*/ mttok p_value) /*@*/ ;
24
25extern /*@observer@*/ fileloc mtDefaultsDecl_getLoc (mtDefaultsDecl) /*@*/ ;
26# define mtDefaultsDecl_getLoc(p_dd) ((p_dd)->loc)
27
28extern /*@observer@*/ mtContextNode mtDefaultsDecl_getContext (mtDefaultsDecl) /*@*/ ;
29# define mtDefaultsDecl_getContext(p_dd) ((p_dd)->context)
30
31extern /*@observer@*/ cstring mtDefaultsDecl_getValue (mtDefaultsDecl) /*@*/ ;
32# define mtDefaultsDecl_getValue(p_dd) ((p_dd)->value)
33
34extern void mtDefaultsDecl_free (/*@only@*/ mtDefaultsDecl) ;
35
36# else
37# error "Multiple include"
38# endif
This page took 0.06881 seconds and 5 git commands to generate.