]> andersk Git - splint.git/blame - src/Headers/privateNode.h
Updated copyrights
[splint.git] / src / Headers / privateNode.h
CommitLineData
885824d3 1/*
c0de361f 2** Copyright (C) University of Virginia, Massachusetts Institue of Technology 1994-2003.
885824d3 3** See ../LICENSE for license information.
4**
5*/
6
7typedef enum {
8 PRIV_CONST, PRIV_VAR,
9 PRIV_TYPE, PRIV_FUNCTION
10 } privateKind;
11
28bf4b0b 12typedef struct {
885824d3 13 privateKind kind;
14 union {
15 constDeclarationNode constdeclaration;
16 varDeclarationNode vardeclaration;
17 typeNode type;
18 fcnNode fcn;
19 } content;
20} *privateNode;
21
22extern /*@unused@*/ /*@only@*/ cstring privateNode_unparse(privateNode p_n);
This page took 0.07197 seconds and 5 git commands to generate.