Various minor fixes for compiler/linter (other then splint itself) warnings.
[splint-patched.git] / src / Headers / mtAnnotationsNode.h
blob64caadbd4d116d76fa290ce4ce36d53cda18cdc6
1 /*
2 ** Copyright (C) University of Virginia, Massachusetts Institue of Technology 1994-2003.
3 ** See ../LICENSE for license information.
4 **
5 */
6 /*
7 ** mtAnnotationsNode.h
8 */
10 # ifndef MTANNOTATIONSNODE_H
11 # define MTANNOTATIONSNODE_H
13 struct s_mtAnnotationsNode {
14 mtAnnotationList annots;
15 } ;
17 extern mtAnnotationsNode mtAnnotationsNode_create (/*@only@*/ mtAnnotationList p_annots) /*@*/ ;
19 extern /*@observer@*/ mtAnnotationList mtAnnotationsNode_getAnnotations (mtAnnotationsNode p_node) /*@*/ ;
20 # define mtAnnotationsNode_getAnnotations(node) ((node)->annots)
22 extern cstring mtAnnotationsNode_unparse (mtAnnotationsNode p_node) /*@*/ ;
23 extern void mtAnnotationsNode_free (/*@only@*/ mtAnnotationsNode) ;
25 # else
26 # error "Multiple include"
27 # endif