]> andersk Git - splint.git/blob - src/Headers/fcnNode.h
eca7a58bba1bb6f9028a7d6762b004ac2504ddf8
[splint.git] / src / Headers / fcnNode.h
1 /*
2 ** Copyright (C) University of Virginia, Massachusetts Institue of Technology 1994-2001.
3 ** See ../LICENSE for license information.
4 **
5 */
6
7 typedef struct {
8   ltoken name;
9   /*@null@*/ lclTypeSpecNode typespec;
10   declaratorNode declarator;
11   globalList globals;
12   varDeclarationNodeList inits;
13   letDeclNodeList lets;
14   /*@null@*/ lclPredicateNode checks;
15   /*@null@*/ lclPredicateNode require;
16   /*@null@*/ modifyNode modify;
17   /*@null@*/ lclPredicateNode ensures;
18   /*@null@*/ lclPredicateNode claim;
19   qual special;
20 } *fcnNode;
21
22 extern void fcnNode_free (/*@null@*/ /*@only@*/ fcnNode p_f);
23 extern /*@only@*/ cstring fcnNode_unparse (/*@null@*/ fcnNode p_f);
This page took 0.025119 seconds and 3 git commands to generate.